diff options
| author | Joseph Dougherty <joseph@jwdougherty.com> | 2014-09-16 23:30:11 -0400 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2014-09-17 09:23:20 +0200 |
| commit | 722516536e0dd99690ab6df4c27bbceb29df4d5b (patch) | |
| tree | eefcb976f98685975417cff374f470eae8fde587 /docs/ref | |
| parent | 3f6430d084097082ea02a8e49ce3e28c7b75582c (diff) | |
[1.7.x] Fixed #23499 -- Error in built-in template tag "now" documentation
Backport of ab8248361e0a7b4fc7684eaaa5891e16b8562683 from master.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index ac0fc9e55c..893a450f03 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -776,11 +776,11 @@ Example:: It is {% now "jS F Y H:i" %} Note that you can backslash-escape a format string if you want to use the -"raw" value. In this example, "f" is backslash-escaped, because otherwise -"f" is a format string that displays the time. The "o" doesn't need to be -escaped, because it's not a format character:: +"raw" value. In this example, both "o" and "f" are backslash-escaped, because +otherwise each is a format string that displays the year and the time, +respectively:: - It is the {% now "jS o\f F" %} + It is the {% now "jS \o\f F" %} This would display as "It is the 4th of September". |
