﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
8652	Multiline tags and tag escape tags	Michael Manfre <mmanfre@…>	nobody	"Multiline tag support would help make templates more readable and allow support for the ability to escape chunks of a template so that they are not parsed.

Multiline tag example:

{# This is a length comment that would benefit from multiple lines

due to its verbosity or some other reason #}

Tag escaping:
I have run in to the need to display template syntax to the end user. Being able to escape a chunk of the text so that the template parser ignores it would clean up the existing template. Some of the existing methods for passing template syntax through the parser unmolested is to use html entity escaping to trick the lexer, or use the very verbose ""templatetag"" tag.

Attached is a patch that provides the mentioned multiline tag support and provides tags that allow escaping blocks of template text.

Escaping example:

""{$ {% if foo %}...{% endif %} $}"" would output ""{% if foo %}...{% endif %}"""		closed	Template system	dev		wontfix	escape multiline		Design decision needed	1	0	0	0	0	0
