pandoc “cannot parse yaml header” when converting md to pdf

杀马特。学长 韩版系。学妹 提交于 2019-11-29 07:02:50

问题


I am trying to convert a markdown document to pdf using pandoc, and it was working fine until it just started to show an error:

pandoc: Could not parse YAML header: did not find expected alphabetic or numeric character "source" (line 32, column 85
pandoc: YAML header is not an object "source" (line 17, column 1)
pandoc: Could not parse YAML header: did not find expected alphabetic or numeric character "source" (line 8, column 91)

Lines 32 and 8 are blank lines between paragraphs, and all that's on line 17 is "---".

I don't even know what YAML is, but I don't want to use it, just MD->LaTeX->PDF.

Searched for these errors but could only find stuff mentioning YAML, not the errors.

Any help would be appreciated.


回答1:


See http://johnmacfarlane.net/pandoc/README.html#yaml-metadata-block

There must be something in your document that looks like a YAML metadata block, but isn't. Such a block would start with --- on a line by itself and end with --- or ... on a line by itself. The line numbers in the error message refer to lines inside the metadata block, not to lines of the document.

By the way, you can turn off YAML metadata block parsing entirely by putting

--from markdown-yaml_metadata_block

in your pandoc command line.



来源:https://stackoverflow.com/questions/19520463/pandoc-cannot-parse-yaml-header-when-converting-md-to-pdf

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!