mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 05:05:53 +00:00
This affects example list references followed by dashes.
Introduced by commit b8d17f7.
Closes #6855.
13 lines
92 B
Markdown
13 lines
92 B
Markdown
```
|
|
% pandoc -t markdown
|
|
(@a) one
|
|
(@b) two
|
|
|
|
See (@a--@b)
|
|
^D
|
|
(1) one
|
|
(2) two
|
|
|
|
See (1--2)
|
|
```
|