From 56d4356d8cb6e683c354a4b8f22a17d37624d6e8 Mon Sep 17 00:00:00 2001 From: ferhat elmas Date: Thu, 28 Mar 2013 02:51:44 +0100 Subject: [PATCH] [1.5.x] Fixed #20146 -- Updated removed_tags example Backport of e5d252f5b9 from master. --- docs/ref/utils.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 35d76531a7e..eaecfd0e982 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -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 ``"Joel a slug"`` the return value will be ``"Joel a slug"``.