pandoc将带样式表的html转换为docx

时间:2015-04-07 03:09:12

标签: html converter docx pandoc

我已经在这个问题上敲了几个小时,我确信这个解决方案很简单,或者说不存在。

我正在尝试将html文件转换为docx!

<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-color: #d0e4fe;
}

h1 {
    color: orange;
    text-align: center;
}

p {
    font-family: "Times New Roman";
    font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>

我可以将它转换成没问题,但我无法坚持使用这些风格。

pandoc -s myfile.html -o test64.docx
pandoc -s -c myfile.css myfile.html -o test64.docx

请救救我。

2 个答案:

答案 0 :(得分:5)

在您的命令中,只有在编写HTML或HTML 5时才会使用“-c myfile.css”。这是一个特定于编写器的选项。

对于docx格式,您需要创建“.docx”模板。

首先运行pandoc -D docx > my_template.docx,然后编辑my_template.docx中的样式。

最后运行pandoc -s myfile.html --template=my_template -o test64.docx

答案 1 :(得分:4)

上述答案不再适用。根据文档,您现在使用以下命令生成模板:

pandoc --print-default-data-file reference.docx > custom-reference.docx

有关如何使用模板的完整文档,请转到the documentation并搜索“--reference-doc”