Stopping Pandoc from escaping single quotes when converting from HTML to Markdown
问题 If I convert a single quote ' from HTML to Markdown, it is automatically escaped: % echo "'" | pandoc -f html -t markdown \' I'd like it to output without the slash, as it makes text with contractions rather much harder to read. I thought this might be due to the "all_symbols_escapable" option, but it still happens, even when I turn that off: % echo "'" | pandoc -f html -t markdown-all_symbols_escapable \' It isn't a problem, however, for markdown_strict: % echo "'" | pandoc -f html -t