mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 19:37:12 +00:00
796 B
796 B
% pandoc -f markdown+smart -t markdown-smart
"hi"...dog's breath---cat 5--6
^D
“hi”…dog’s breath—cat 5–6
% pandoc -f markdown+smart -t markdown+smart
"hi"...dog's breath---cat 5--6
^D
"hi"...dog's breath---cat 5--6
When we render literal quotes without smart, we need to escape:
% pandoc -f markdown-smart \
-t markdown+smart
"hi"...dog's breath---cat 5--6
^D
\"hi\"\...dog\'s breath\-\--cat 5\--6
% pandoc -f markdown+smart -t rst-smart
"hi"...dog's breath---cat 5--6
^D
“hi”…dog’s breath—cat 5–6
% pandoc -f markdown+smart -t rst+smart
"hi"...dog's breath---cat 5--6
^D
"hi"...dog's breath---cat 5--6
% pandoc -f markdown-smart -t rst+smart
"hi"...dog's breath---cat 5--6
^D
\"hi\"\...dog\'s breath\-\--cat 5\--6