diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 01f4971..a08fe9c 100644
a
|
b
|
safe
|
1683 | 1683 | Marks a string as not requiring further HTML escaping prior to output. When |
1684 | 1684 | autoescaping is off, this filter has no effect. |
1685 | 1685 | |
| 1686 | .. note:: |
| 1687 | |
| 1688 | If you are chaining filters something after ``safe`` can unescape the |
| 1689 | contents. For example the following code prints the variable as is, |
| 1690 | unescaped: |
| 1691 | |
| 1692 | .. code-block:: html+django |
| 1693 | |
| 1694 | {{ var|safe|escape }} |
| 1695 | |
1686 | 1696 | .. templatefilter:: safeseq |
1687 | 1697 | |
1688 | 1698 | safeseq |