NAME
Dotiac::DTL::Comment - Stores a Django template comment tag.
SYNOPSIS
Template file
Some text....
{# A comment, #}
Some other Text.{# Another comment
over multiple lines #} Some more text.
DESCRIPTION
Everything between the starting {# and the next #} is skipped while generating the output of the template.
During Template compiling it is converted to normal perl comment tags:
Template code...
{# Some comment
more comment #}
Template code..
Will be converted to:
Perl code...
# Some comment
# more comment
Perl code...
The module itself has no real use, it's just used by the Dotiac::DTL parser to store those comments.
SEE ALSO
http://www.djangoproject.com, Dotiac::DTL
BUGS
If you find a bug, please report it.
LEGAL
Dotiac::DTL was built according to http://docs.djangoproject.com/en/dev/ref/templates/builtins/.
AUTHOR
Marc-Sebastian Lucksch
perl@marc-s.de