Hi,
On Sunday 26 October 2003 15:44, Puneet Kishor wrote:
> While templates are supposed to be (almost) pure html, I want to
> insert comments in the templates (for my benefit... all those loops
> within loops get confusing after a while) that I don't want printed
> in the browser.
I use HTML::C
Sam Tregar wrote:
On Sat, 25 Oct 2003, David Christensen wrote:
I searched the mailing list archive, and was surprised not to find any
messages regarding HTML editors.
That's probably because most of the people on this list are on the
Perl side of the fence. The HTML designers I work with use
The following works fine on both MacOS X (Perl 5.6.0) and Windows XP
(Perl 5.8.0).
my $f = sub { my $t = shift; $$t =~ s///g; };
my $template = HTML::Template->new(
filename => index.tmpl,
global_vars => 1,
loop_context_vars => 1,
filter =>
On Mon, 27 Oct 2003, Puneet Kishor wrote:
> However, the following works fine on MacOS X
>
> my $template = HTML::Template->new(
>filename => index.tmpl,
>global_vars => 1,
>loop_context_vars => 1,
>filter => sub { $$ =~ s///g; }
>