fixed markup
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 3 Dec 2013 14:16:16 +0000 (15:16 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 3 Dec 2013 14:16:16 +0000 (15:16 +0100)
doc/functions/max.rst
doc/functions/min.rst

index 8232b82..bdc5b75 100644 (file)
@@ -11,5 +11,9 @@
     {{ max(1, 3, 2) }}
     {{ max([1, 3, 2]) }}
 
-    # When called with a mapping, max ignores keys and only compares values.
-    {{ max({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }} {# return "two" #}
+When called with a mapping, max ignores keys and only compares values:
+
+.. code-block:: jinja
+
+    {{ max({2: "two", 1: "one", 3: "three", 5: "five", 4: "for"}) }}
+    {# return "two" #}
index c87cab0..b924b03 100644 (file)
@@ -11,5 +11,9 @@
     {{ min(1, 3, 2) }}
     {{ min([1, 3, 2]) }}
 
-    # When called with a mapping, min ignores keys and only compares values.
-    {{ min({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }} {# return "five" #}
+When called with a mapping, min ignores keys and only compares values:
+
+.. code-block:: jinja
+
+    {{ min({2: "two", 1: "one", 3: "three", 5: "five", 4: "for"}) }}
+    {# return "five" #}