我有一个降价文件。例如:
# This is a heading
This is a text in a html file
## This is a subheading
This is a text in a subheading
# This is another heading
This is a text in other html file
是否可以将其导出到多个 html 文件,包括如下所示的索引文件:
1. This is a heading
1.1 This is a subheading
2. This is another heading
每个标题都是一个 html 文件,包括下一个标题之前的所有内容。类似 GNU 文档的东西:https://www.gnu.org/software/tar/manual/html_node/index.html
答案1
您可以使用文本信息为了这个目的:
pandoc -i file.md -o file.texi
texi2any --html file.texi
这将创建“文件”目录,其中包含index.html 文件和所有节点。