asciidoc + plantuml で図を表示させる方法
解決したいこと
asciidoc のプレビュー に plantuml の UML図を記載したいです。
環境は Windows10 + VScodeとなります。
asciidoc plantuml はインストール済みです。
またjava RunTimeもインストール済みです。
発生している問題・エラー
下図のようにPlantumlが絵として記述されないです。
該当するソースコード
= Document Title (Level 0)
== Level 1 Section Title
[plantuml]
----
class Animal {
run()
}
class Cat extends Animal {
}
----
=== Level 2 Section Title
==== Level 3 Section Title
===== Level 4 Section Title
自分で試したこと
何かしらadoc上で表示する マジックワードが必要なのでしょうか?
0