summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-15 01:51:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-15 01:51:30 +0000
commit0eaee6f5d4976f3b0146d512c43d2f9a19f39021 (patch)
tree1b7dee9df4301fc1bc248115873ad6ac0a23b15c /docs
parente260037e168152b17e4f46685ccce301fe3f5c99 (diff)
Fixed #1067 and #276 -- Added a {% spaceless %} tag, available in all templates
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index d4bb468bd5..0fbe1f6ae8 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -663,6 +663,34 @@ i.e.::
{% regroup people|dictsort:"gender" by gender as grouped %}
+spaceless
+~~~~~~~~~
+
+**New in Django development version.**
+
+Strips whitespace between HTML tags. This includes tab characters and newlines.
+
+Example usage::
+
+ {% spaceless %}
+ <p>
+ <a href="foo/">Foo</a>
+ </p>
+ {% spaceless %}
+
+This example would return this HTML::
+
+ <p><a href="foo/">Foo</a></p>
+
+Only space between *tags* is stripped -- not space between tags and text. In
+this example, the space around ``Hello`` won't be stripped::
+
+ {% spaceless %}
+ <strong>
+ Hello
+ </strong>
+ {% spaceless %}
+
ssi
~~~