mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 13:45:49 +00:00
E.g. we don't want `<strong></strong>` to become `****`. Similarly for emphasis, super/subscript, strikeout. Closes #3715.
16 lines
142 B
Markdown
16 lines
142 B
Markdown
```
|
|
% pandoc -t markdown -f html --wrap=preserve
|
|
x<em></em>x
|
|
y<strong></strong>y
|
|
z<sup></sup>z
|
|
w<sub></sub>w
|
|
q<s></s>q
|
|
^D
|
|
xx
|
|
yy
|
|
zz
|
|
ww
|
|
qq
|
|
```
|
|
|