输出纯文本时禁用双引号的 pandoc 转换

Disable pandoc conversion of double quotes when outputting plain text

这是降价文件test.md:

# Introduction
He said, "Hello!".

我想使用适合在命令行上显示的 pandoc 将其转换为文本。为此,我 运行 pandoc -t plain test.md 结果是



INTRODUCTION


He said, “Hello!â€.

想要的是双引号保持原样。

要关闭 smart quotes 使用:

pandoc -f markdown-smart -t plain test.md

要在终端中显示它,您可以尝试 :

pandoc -s -f markdown-smart -t man test.md | groff -T utf8 -man | less