refactored documentation

This commit is contained in:
Fabien Potencier
2011-09-26 23:40:44 +02:00
parent d65366e772
commit b096e21daa
53 changed files with 1705 additions and 1273 deletions
+11
View File
@@ -0,0 +1,11 @@
``capitalize``
==============
The ``capitalize`` filter capitalizes a value. The first character will be
uppercase, all others lowercase:
.. code-block:: jinja
{{ 'my first car'|capitalize }}
{# outputs 'My first car' #}