Hello,
I would like to use plantuml together with doxygen, to document my code for, e.g. using sequence diagrams. I found that is works fine as long as I put the plantuml commands within a plantuml block (///@startuml ..... ///@enduml). This syntax forces me to put the description within one block! But I would like to put the specific plantuml commands within the code. If I do it, a failure message will be generatet. Example:
///@startuml
... some code line
///bob -> alice
///@enduml
Is there a way to distribute the plantuml commands over the code?
Thank you