pandoc/test/command/3715.md
John MacFarlane c366fab2cb Markdown writer: Avoid inline surround-marking with empty content.
E.g. we don't want `<strong></strong>` to become `****`.
Similarly for emphasis, super/subscript, strikeout.

Closes #3715.
2017-06-01 12:30:58 +02:00

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
```