Pandoc - 여러 HTML 파일로 내보내기

Pandoc - 여러 HTML 파일로 내보내기

마크다운 파일이 있습니다. 예를 들어:

# 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 파일과 모든 노드가 포함된 "files" 디렉터리가 생성됩니다.

관련 정보