summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-30 09:33:28 -0400
committerTim Graham <timograham@gmail.com>2013-10-30 09:35:05 -0400
commitd774cb219c4581461bd2310450605916dd7c13e6 (patch)
tree0cce2513c7f7812c6d0b294ce5a667bb352930c1
parent1cdf7f83ff9d0a7046ec99d035b82a5bd93838c7 (diff)
[1.6.x] Fixed #21306 -- Documented lower-casing behavior of title filter.
Backport of eafe279120 from master
-rw-r--r--docs/ref/templates/builtins.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index e92a46e163..c579cb489a 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -2091,14 +2091,15 @@ date that is in the past relative to the comparison point.
title
^^^^^
-Converts a string into titlecase by capitalizing each word in the string.
-This tag makes no effort to keep "trivial words" in lowercase.
+Converts a string into titlecase by making words start with an uppercase
+character and the remaining characters lowercase. This tag makes no effort to
+keep "trivial words" in lowercase.
For example::
{{ value|title }}
-If ``value`` is ``"my first post"``, the output will be ``"My First Post"``.
+If ``value`` is ``"my FIRST post"``, the output will be ``"My First Post"``.
.. templatefilter:: truncatechars