Changes between Version 2 and Version 3 of Ticket #23424
- Timestamp:
- Sep 5, 2014, 8:29:00 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23424 – Description
v2 v3 2 2 3 3 This works: 4 4 {{{ 5 5 {% verbatim %}{{{% endverbatim %} – correctly renders as – {{ 6 6 {% verbatim %}}}{% endverbatim %} – correctly renders as – }} 7 7 {% verbatim %}{ {% endverbatim %}text{% verbatim %} }{% endverbatim %} – correctly renders as – { text } 8 8 }}} 9 9 However, this fails: 10 10 {{{ 11 11 {% verbatim %}{{% endverbatim %}text{% verbatim %}}{% endverbatim %} – incorrectly renders as – {{% endverbatim %}text{% verbatim %}} 12 12 {% verbatim %}{{{% endverbatim %}text{% verbatim %}}}{% endverbatim %} – incorrectly renders as – {{{% endverbatim %}text{% verbatim %}}} 13 13 {% 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 }}}