mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
9fa4fa3c51
Fixes a regression in 3.6 that caused problems parsing text with underscores. Closes #10497.
14 lines
97 B
Markdown
14 lines
97 B
Markdown
```
|
|
% pandoc -f rst
|
|
a.__b__
|
|
|
|
a__b__
|
|
|
|
__foo__
|
|
^D
|
|
<p>a.__b__</p>
|
|
<p>a__b__</p>
|
|
<p>__foo__</p>
|
|
```
|
|
|