pandoc/test/command/6296.md
John MacFarlane 9a809d4d01 Markdown writer: avoid unnecessary escapes before intraword _
when `intraword_underscores` extension is enabled.
Closes #6296.
2020-04-17 22:42:21 -07:00

14 lines
167 B
Markdown

```
% pandoc -f native -t markdown
[Str "_hi_there"]
^D
\_hi_there
```
```
% pandoc -f native -t markdown-intraword_underscores
[Str "_hi_there"]
^D
\_hi\_there
```