We use the PlantUML Eclipse plugin quite a lot. Sometimes we have to use dot directly to be flexible enough. So our files look like this:
@startuml
digraph root {
// Normal dot code
}
@enduml
The PlantUML view displays the generated image fine, but hyperlinks in the form of [[...]] do not work as in the normal PlantUML syntax. Dot also has ways of adding href links but those are not supported by the view (some dot viewers do support such hyperlinks).
Is there some way I can profit from the latest PlantUML hyperlink link support in Eclipse and still have the flexibility of sometimes using dot syntax directly?
Thanks and regards,
Tony