Edgewall Software

Changes between Initial Version and Version 4 of Ticket #13355


Ignore:
Timestamp:
Mar 5, 2021, 6:20:05 PM (3 years ago)
Author:
Jun Omae
Comment:

Thanks. However, I'd like to put </sup> before </td> in this case. Missing </sup> in your suggested changes.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13355 – Description

    initial v4  
    3737>>>
    3838}}}
     39
     40Complex patterns:
     41{{{#!pycon
     42>>> print(format_to_html(env, context, '|| aaa**1 || bbb//2 || ccc^3 ||'))
     43<table class="wiki">
     44<tr><td> aaa<strong>1 </td><td> bbb<em>2 </td><td> ccc<sup>3
     45</td></tr></table>
     46</sup></em></strong>
     47>>> print(format_to_html(env, context, '|| aaa**1//2^3,,4~~5 ||'))
     48<table class="wiki">
     49<tr><td> aaa<strong>1<em>2<sup>3<sub>4<del>5
     50</td></tr></table>
     51</del></sub></sup></em></strong>
     52}}}