asciidoc(adoc)을 markdown(md)로 변환하기 (convert adoc to md)
- pandoc, asciidoc 설치
- linux
1
sudo apt install pandoc asciidoc
- mac os (with homebrew)
1
brew install asciidoc pandoc
asciidoc(adoc)을 docbook(xml)으로 변환
1
asciidoc -b docbook {asciidoc(입력) 파일 명}.adoc
- 결과로 {asciidoc(입력) 파일 명}.xml 파일이 생성된다.
docbook(xml)을 markdown(md)으로 변환
1
pandoc -f docbook -t markdown_strict {xml(입력) 파일 명}.xml -o {출력 파일 명}.md
- 결과로 {출력 파일 명}.md 파일이 생성된다.
- 완료
This post is licensed under CC BY 4.0 by the author.