http://www.perlmonks.org?node_id=1019622


in reply to Re^2: Best Perl Module for creating multiple web pages with different information in them?
in thread Best Perl Module for creating multiple web pages with different information in them?

Heard of "mail merge"?

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Best Perl Module for creating multiple web pages with different information in them?

Replies are listed 'Best First'.
Re^4: Best Perl Module for creating multiple web pages with different information in them?
by marto (Cardinal) on Feb 19, 2013 at 17:19 UTC

    I take your point, but I'm a firm believer in using the right tool for the job. Some simple CGI scripting could replicate the functionality demonstrated in the example site. IMHO doing it right the first time would be easier than messing around with a word processor should.