Changes between Version 2 and Version 3 of Ticket #23424


Ignore:
Timestamp:
Sep 5, 2014, 8:29:00 AM (10 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23424 – Description

    v2 v3  
    22
    33This works:
    4 
     4{{{
    55{% verbatim %}{{{% endverbatim %}   – correctly renders as –   {{
    66{% verbatim %}}}{% endverbatim %}   – correctly renders as –   }}
    77{% verbatim %}{ {% endverbatim %}text{% verbatim %} }{% endverbatim %}   – correctly renders as – { text }
    8 
     8}}}
    99However, this fails:
    10 
     10{{{
    1111{% verbatim %}{{% endverbatim %}text{% verbatim %}}{% endverbatim %}   – incorrectly renders as –   {{% endverbatim %}text{% verbatim %}}
    1212{% verbatim %}{{{% endverbatim %}text{% verbatim %}}}{% endverbatim %}   – incorrectly renders as –   {{{% endverbatim %}text{% verbatim %}}}
    1313{% verbatim %}{{ {% endverbatim %}text{% verbatim %} }}{% endverbatim %}   – incorrectly renders as –   {{ {% endverbatim %}text{% verbatim %} }}
    14 
    15 (Note that in the second example above the bug reporter is messing with the example as it interprets three curly braces as a code block).
    16 
     14}}}
Back to Top