Subject: | POD inside of templates - there is no __END__ tag. |
At the Moment we are adding POD to templates like this:
Show quoted text
--- reality -----------------------------------------------------------
<html>
...
</html>
<%comment POD%>
=pod
...
=cut
<%/comment%>
-----------------------------------------------------------------------
But if POD is long, I think the parser has to read a lot and only to
foud the <%/comment%> tag.
Better we would have an __END__ tag like Perl and then the Parser can
stop at this point, has not to read the whole file.
--- wish --------------------------------------------------------------
<html>
...
</html>
__END__
=pod
...
=cut
-----------------------------------------------------------------------