diff options
| author | Tim Graham <timograham@gmail.com> | 2016-05-10 12:46:47 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-10 12:46:47 -0400 |
| commit | 2f0e0eee450775a71ac3eb42707dcd970ede42c8 (patch) | |
| tree | 26149ef4a5feb6317f9b52c79239ca524a5bded4 /docs/howto | |
| parent | c3e108694966f045adcc0ba11133a2b3bf238770 (diff) | |
Fixed #24046 -- Deprecated the "escape" half of utils.safestring.
Diffstat (limited to 'docs/howto')
| -rw-r--r-- | docs/howto/custom-template-tags.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt index 97179de7b0..69e223c01c 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -210,15 +210,6 @@ passed around inside the template code: # Do something with the "safe" string. ... -* **Strings marked as "needing escaping"** are *always* escaped on - output, regardless of whether they are in an :ttag:`autoescape` block or - not. These strings are only escaped once, however, even if auto-escaping - applies. - - Internally, these strings are of type ``EscapeBytes`` or - ``EscapeText``. Generally you don't have to worry about these; they - exist for the implementation of the :tfilter:`escape` filter. - Template filter code falls into one of two situations: 1. Your filter does not introduce any HTML-unsafe characters (``<``, ``>``, |
