PlantUMLは,DSLを書いてコンパイルすると絵が出るやつ.UML書ける.
インストール
brew install plantuml
日本語
-charset UTF-8
というのをつける.
If you want to use a different charset, for example UTF-8, you can use the -charset flag :
Frequently Asked Questions
java -jar plantuml.jar -charset UTF-8 ...
dotがないって言われる
/usr/bin/dot
を見ようとするので,
GRAPHVIZ_DOT=$(which dot)
とかつける.
お絵描きする
@startuml 子 <|-- 孫 親 <|-- 子 親 <|-- 姉 @enduml
というのをb.plantumlとかに置いて,
GRAPHVIZ_DOT=$(which dot) plantuml -charset UTF-8 -tpng b.plantuml
↑これで↓これが出る.