mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
All quotes should be escaped the same way with `smart`; previously we were treating right and left single quote differently. Closes #11463.
14 lines
165 B
Markdown
14 lines
165 B
Markdown
```
|
|
% pandoc -t typst
|
|
'hi' and \'
|
|
^D
|
|
'hi' and \'
|
|
```
|
|
|
|
```
|
|
% pandoc -f markdown -t typst | pandoc -f typst -t markdown
|
|
"hi" \" 'hi' and \'
|
|
^D
|
|
"hi" \" 'hi' and \'
|
|
```
|