pandoc citeproc 从 markdown 到 markdown 但呈现引用
pandoc citeproc from markdown to markdown but render citations
我想做以下事情:
- 获取带有引文关键字的降价文件f.i。 @AuthorYear
- 运行 pandoc citeproc 在其之上创建降价文件,但引用被实际文本替换。
我已经尝试过的示例:
- citationsfile 是包含引文的文件
- infile.md和outfile分别是进出的东西
我可以将它从 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.
我想做以下事情:
- 获取带有引文关键字的降价文件f.i。 @AuthorYear
- 运行 pandoc citeproc 在其之上创建降价文件,但引用被实际文本替换。
我已经尝试过的示例:
- citationsfile 是包含引文的文件
- infile.md和outfile分别是进出的东西
我可以将它从 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.