From fcecb284f0c3d8f04ea282b70363a2a2023570d9 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 3 Dec 2013 15:16:16 +0100 Subject: [PATCH] fixed markup --- doc/functions/max.rst | 8 ++++++-- doc/functions/min.rst | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/doc/functions/max.rst b/doc/functions/max.rst index 8232b82..bdc5b75 100644 --- a/doc/functions/max.rst +++ b/doc/functions/max.rst @@ -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" #} diff --git a/doc/functions/min.rst b/doc/functions/min.rst index c87cab0..b924b03 100644 --- a/doc/functions/min.rst +++ b/doc/functions/min.rst @@ -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" #} -- 1.7.2.5