summaryrefslogtreecommitdiff
path: root/docs/templates.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-04-23 22:23:46 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-04-23 22:23:46 +0000
commit980a522f9f5ba4774ebeef3fffb8722c481f9da2 (patch)
treec9fa2715bf9d604d214ecbea86c55128f1bf2c11 /docs/templates.txt
parent213b6a6905ad86f05a2217005b6c140660d3ff5f (diff)
magic-removal: Fixed #1270 -- Made the escape filter escape single quotes
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2738 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates.txt')
-rw-r--r--docs/templates.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index 9d137019a0..88f14dd3b9 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -844,7 +844,8 @@ Escapes a string's HTML. Specifically, it makes these replacements:
* ``"&"`` to ``"&amp;"``
* ``<`` to ``"&lt;"``
* ``>`` to ``"&gt;"``
- * ``'"'`` (double quote) to ``"&quot;"``
+ * ``'"'`` (double quote) to ``'&quot;'``
+ * ``"'"`` (single quote) to ``'&#39;'``
filesizeformat
~~~~~~~~~~~~~~