From eafe279120e7e6ebe7b6d42443366088ba1a50c8 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 30 Oct 2013 09:33:28 -0400 Subject: [PATCH] Fixed #21306 -- Documented lower-casing behavior of title filter. --- docs/ref/templates/builtins.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 9a3efe7975..3896f80e77 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -2116,14 +2116,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