NAME
	HTML::FillInForm::Lite - Fills in HTML forms with data
SYNOPSIS
	use HTML::FillInForm::Lite;
	use CGI;
	my $q = CGI->new();
	print HTML::FillInForm::Lite->fill("foo.html", $q);
DESCRIPTION
	HTML::FillInForm::Lite fills in HTML forms with Perl data,
	as HTML::FillInForm does, but it's faster than HTML::FillInForm.
	(To benchmark this module, you can run "perl -Ilib example/benchmark.pl")
	See "perldoc HTML::FillInForm::Lite" for the rest of the document.
DEPENDENCIES
	perl 5.8.1 or later.
INSTALLATION
	To install this module, run the following commands.
		perl Makefile.PL
		make
		make test
		make install
COPYRIGHT AND LICENCE
	Copyright(c) 2008-2010 Goro Fuji, Some rights reserved.
	This program is free software; you can redistribute it and/or
	modify it under the same terms as Perl itself.