Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / doc / filters / striptags.rst
1 ``striptags``
2 =============
3
4 The ``striptags`` filter strips SGML/XML tags and replace adjacent whitespace
5 by one space:
6
7 .. code-block:: jinja
8
9     {{ some_html|striptags }}
10
11 You can also provide tags which should not be stripped:
12
13 .. code-block:: jinja
14
15     {{ some_html|striptags('<br><p>') }}
16
17 In this example, the ``<br/>``, ``<br>``, ``<p>``, and ``</p>`` tags won't be
18 removed from the string.
19
20 .. note::
21
22     Internally, Twig uses the PHP `strip_tags`_ function.
23
24 Arguments
25 ---------
26
27 * ``allowable_tags``: Tags which should not be stripped
28
29 .. _`strip_tags`: http://php.net/strip_tags