Files
John MacFarlane c21177b113 Smart quote parsing: ignore curly quotes.
Previously we tried to match curly quotes as well as straight
quotes, producing Quoted inlines.  But it seems better just to
assume that those who use curly quotes want them passed through
verbatim.

This also fixes an (unintended) bug whereby curly single left
quotes would sometimes be changed to single right quotes.

Closes #10610.
2025-02-13 13:58:53 -08:00

15 lines
203 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
```
% pandoc -t latex --wrap=preserve
hi there?“
hi there!“
hi there?
hi there!
hi there!
^D
hi there?{\kern0pt}``
hi there!{\kern0pt}``
hi there?{\kern0pt}`
hi there!{\kern0pt}`
hi there!
```