diff options
| author | Timo Graham <timograham@gmail.com> | 2010-12-18 15:37:55 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2010-12-18 15:37:55 +0000 |
| commit | 82e8ad3dcacbd205c77a50fff51b105bdf5e0530 (patch) | |
| tree | b1c1b4ee6f6e38255529721d65dee9c21cc65a32 | |
| parent | 2a0dda3df9c90047267e2c812ea75d2ec233bec6 (diff) | |
[1.2.X] Fixed #14676 - Document that the removetags filter is case-sensitive. Thanks peterh32 for the report and elbarto for the patch.
Backport of r14925 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14926 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/ref/templates/builtins.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index e390e4f49e..44bbc37245 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -1671,6 +1671,11 @@ For example:: If ``value`` is ``"<b>Joel</b> <button>is</button> a <span>slug</span>"`` the output will be ``"Joel <button>is</button> a slug"``. +Note that this filter is case-sensitive. + +If ``value`` is ``"<B>Joel</B> <button>is</button> a <span>slug</span>"`` the +output will be ``"<B>Joel</B> <button>is</button> a slug"``. + .. templatefilter:: rjust rjust |
