pandoc citeproc 从 markdown 到 markdown 但呈现引用

pandoc citeproc from markdown to markdown but render citations

我想做以下事情:

我已经尝试过的示例:

我可以将它从 markdown 转换为 html

pandoc --bibliography citations.json --citeproc infile.md -o outfile.html

这似乎不起作用

pandoc --bibliography citations.json --citeproc infile.md -o outfile.md

有一个输出 markdown 文件,但它仍然包含密钥,而不是替换文件。 有没有比markdown-html-markdown更优雅的方案?

此问题已得到解答elsewhere。解决方法是使用-t markdown-citations,也就是markdown减去引用数

来自原文Pandoc documentation

Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name. See Extensions below, for a list of extensions and their names. See --list-input-formats and --list-extensions, below.