Ticket #16067: 16067.small-reST-markup-issues.diff

File 16067.small-reST-markup-issues.diff, 688 bytes (added by Julien Phalip, 13 years ago)
  • docs/ref/templates/builtins.txt

    diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
    index 29bed25..4c8c0e6 100644
    a b operators, from lowest to highest, is as follows:  
    533533
    534534(This follows Python exactly). So, for example, the following complex if tag:
    535535
     536.. code-block:: django
     537
    536538    {% if a == b or c == d and e %}
    537539
    538540...will be interpreted as:
    If ``value`` is the list ``['a', 'b', 'c']``, the output will be ``'a'``.  
    14831485fix_ampersands
    14841486~~~~~~~~~~~~~~
    14851487
    1486 ..note::
     1488.. note::
    14871489
    14881490    This is rarely useful as ampersands are automatically escaped. See escape_ for more information.
    14891491
Back to Top