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 markdown_strict
'
Any suggestions? I'd like to use the default Pandoc markdow with the options tweaked, or report this as a bug if it's not what others expect.