必要ソフト
- asciidoctor
- asciidoctor-pdf
- pandoc
インストール方法は過去記事参照
変換方法
例ではhoge.ascを変換する例
asciidoc -> html
asciidoctor hoge.asc
asciidoc -> pdf
asciidoctor-pdf -a scripts=cjk -a pdf-theme=default-with-fallback-font hoge.asc
asciidoc -> docbook
asciidoctor -b docbook hoge.asc
asciidoc -> markdown
asciidoctor -b docbook hoge.asc
pandoc -f docbook -t markdown_strict hoge.xml -o hoge.md
コメント