Ticket #6752: t6752_revised.diff

File t6752_revised.diff, 529 bytes (added by Joshua Russo, 14 years ago)

Changed the term unescaped to demonstrate HTML vs safestring escaping

  • docs/ref/templates/builtins.txt

     
    16871687
    16881688    If you are chaining filters, a filter applied after ``safe`` can
    16891689    make the contents unsafe again. For example, the following code
    1690     prints the variable as is, unescaped:
     1690    prints the variable HTML-escaped instead of safe-string-escaped:
    16911691
    16921692    .. code-block:: html+django
    16931693
Back to Top