diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-04-23 22:23:46 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-04-23 22:23:46 +0000 |
| commit | 980a522f9f5ba4774ebeef3fffb8722c481f9da2 (patch) | |
| tree | c9fa2715bf9d604d214ecbea86c55128f1bf2c11 /docs/templates.txt | |
| parent | 213b6a6905ad86f05a2217005b6c140660d3ff5f (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.txt | 3 |
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 ``"&"`` * ``<`` to ``"<"`` * ``>`` to ``">"`` - * ``'"'`` (double quote) to ``"""`` + * ``'"'`` (double quote) to ``'"'`` + * ``"'"`` (single quote) to ``'''`` filesizeformat ~~~~~~~~~~~~~~ |
