Sometimes I want to comment out portions of the diagram syntax, similar to what I would do in source code, such as:
component a
component b
component c
component d
a -> b
b -> c
/*
c -> d
d-> e
*/
Is there someway todo this?
Great product BTW!
(--------)
You can use quote like in the following example @startuml ' This is a comment on a single line Bob->Alice : hello /' You quote alors use slash-and-quote to split your comments on several lines '/ @enduml
Line comments use a single apostrophe
' This is a comment
Block comments use C-style comments except that instead of * you use an apostrophe
/' many lines here '/