Documenting PlantUML diagrams inline with Doxygen is great, esp. with the ALIAS.
However, I'd like to pass along a "caption" for that image to Doxygen, but plantuml (r7988) misinterprets it.
Here's what I'd like to do:
ALIASES += "startuml{2}=\image html \1 \"\2\"\n\image latex \1 \"\2\"\n\if DontIgnorePlantUMLCode"
ALIASES += "startuml{3}=\image html \1 \"\2\" \3\n\image latex \1 \"\2\" \3\n\if DontIgnorePlantUMLCode"
and in my source code:
@startuml{myimage.png,This is my caption text}
.. PlantUML code
@enduml
and also
@startuml{myotherimage.png,This is my other caption text,width=16cm}
.. PlantUML code
@enduml
plantuml does generate an image, but gives it the name "myimage.png,This is my caption text". Could it use only the first argument for the file name ?
Thanks