pandoc生成html5文档

建一个makeh.bat文件,输入如下内容:

@pandoc %1 --smart -f markdown -t html5 --standalone -H style.css

用法:

比如有个hello.txt文件,要生成html文件。命令行输入:

makeh hello.txt > hello.html

参数解释:

-f 指定输入格式。

-t 目标格式。

--standalone,如果没这个选项,生成的文件没有文件头(html head那些东西)。

-H 大写H,指定css文件。

--smart,这个选项无关紧要。

> hello.html, 把转换结果写入文件hello.html.

转换以后,css是嵌入文档的。这在有些情况下比较方便。

还有一个要紧的地方,输入文件必须是utf-8编码的。否则pandoc会出编码异常的错误。





你可能感兴趣的:(markdown,pandoc)