Opened 17 years ago
Closed 17 years ago
#4446 closed (worksforme)
spaceless fails under specific condition of subtemplate
Reported by: | shwag < > | Owned by: | nobody |
---|---|---|---|
Component: | Template system | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
The {% spaceless %} filter is not filtering out carriage returns in sub-templates under certain conditions.
{% spaceless %} {% include "something.html" %} {% endspaceless %}
and in something.html
{% if test %} {% load humanize %} <a name="thing"></a>
will leave one carriage return for each block tag.
A valid work around is.
<a name="thing"></a> {% if test %} {% load humanize %}
Once valid html is before the tags, the carriage returns are no longer generated.
Change History (3)
comment:1 by , 17 years ago
Component: | Uncategorized → Template system |
---|---|
Owner: | changed from | to
comment:2 by , 17 years ago
Description: | modified (diff) |
---|
comment:3 by , 17 years ago
Resolution: | → worksforme |
---|---|
Status: | new → closed |
With the latest trunk - [6364] - the provided example (with {% endif %}
added, of course) works as expected/documented: no unnecessary newlines.
Note:
See TracTickets
for help on using tickets.
Fixed description formatting so that non-code sentences wrap.