mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 14:15:40 +00:00
Previously we dropped periods, commas, etc. This was a regression from 2024. All we really need to do is escape the comma. Closes #11758.
14 lines
112 B
Markdown
14 lines
112 B
Markdown
```
|
|
% pandoc -t texinfo
|
|
[a.b](url)
|
|
|
|
[a,b](url)
|
|
^D
|
|
@node Top
|
|
@top Top
|
|
|
|
@uref{url,a.b}
|
|
|
|
@uref{url,a@comma{}b}
|
|
```
|