PlantUML:要点は3つです
1. UMLの図表が書ける
標準的な作図方法である
上流工程からシームレスにつながる
2. テキストベースである
メンテナンスが簡単
テキストの差分(diff)を取ることで、変更点が容易にわかる
3. Scarpboxと相性がよい
https://plantuml-proxy.vercel.app/svg/https://scrapbox.io/api/code/suto3/PlantUML:要点は3つです/c03.pu#.svg
code:c01.pu
@startuml
note left
= PlantUML\nを\n使う\n
= 3つの理由
# UMLの図表が書ける
# テキストベースである
# Scarpboxと相性がよい
end note
@enduml
code:c02.pu
@startuml
note right
== PlantUMLを使う
===3つの理由
-------
# UMLの図表が書ける
# テキストベースである
# Scarpboxと相性がよい
end note
@enduml
code:c03.pu
@startuml
object PlantUMLを使う3つの理由 {
# UMLの図表が書ける
# テキストベースである
# Scarpboxと相性がよい
}
@enduml