c366fab2cb
E.g. we don't want `<strong></strong>` to become `****`. Similarly for emphasis, super/subscript, strikeout. Closes #3715.
15 lines
142 B
Markdown
15 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
|
|
```
|
|
|