Html

Pandoc - 導出到多個 HTML 文件

  • March 26, 2020

我有一個降價文件。例如:

# 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

您可以為此目的使用texinfo :

pandoc -i file.md -o file.texi
texi2any --html file.texi

這將創建包含 index.html 文件和所有節點的“文件”目錄。

引用自:https://unix.stackexchange.com/questions/574998