﻿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
8123	Spaceless tag should pay attention to specific tags	Julian Bez	Julian Bez	"Currently, the spaceless tag erases all whitespace between HTML tags.

That gets you in trouble, because whitespace between some specific tags carries semantic meaning.

Example:

{{{
<div>
<h1>Hello</h1>
<p>That is an <strong>important</strong> <a href="""">question</a>  </p> <p> <em>Bla</em> bla</p>
</div>
}}}

Currently produces:

{{{
<div><h1>Hello</h1><p>That is an <strong>important</strong><a href="""">question</a></p><p><em>Bla</em> bla</p></div>
}}}

and gets you ""...important[wiki:VersionOneRoadmap question]..."" when it really should be:

{{{
<div><h1>Hello</h1><p>That is an <strong>important</strong> <a href="""">question</a></p><p><em>Bla</em> bla</p></div>
}}}

The difference here is that whitespace between ''strong'' and ''a'' would be preserved, but it still deletes space between ''p'' and ''em'' for example."		closed	Template system	dev		wontfix			Design decision needed	1	0	0	1	0	0
