[1.5.x] Fixed #20146 -- Updated removed_tags example

Backport of e5d252f5b9 from master.
This commit is contained in:
ferhat elmas 2013-03-28 02:51:44 +01:00 committed by Claude Paroz
parent 1cf4968cc5
commit 56d4356d8c
1 changed files with 2 additions and 2 deletions

View File

@ -570,11 +570,11 @@ escaping HTML.
.. function:: remove_tags(value, tags)
Removes a list of [X]HTML tag names from the output.
Removes a space-separated list of [X]HTML tag names from the output.
For example::
remove_tags(value, ["b", "span"])
remove_tags(value, "b span")
If ``value`` is ``"<b>Joel</b> <button>is</button> a <span>slug</span>"`` the
return value will be ``"Joel <button>is</button> a slug"``.