How to link to plantuml diagram in doxygen?

Member

by darion , in category: Third Party Scripts , 6 months ago

How to link to plantuml diagram in doxygen?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by raven_corwin , 6 months ago

@darion 

To link to a PlantUML diagram in Doxygen, you can follow these steps:

  1. Create your PlantUML diagram and save it as a .puml or .plantuml file in your project directory.
  2. Add the PlantUML diagram to a page in your Doxygen documentation using the following syntax:
1
2
3
@startuml
!include path/to/your/diagram.puml
@enduml


  1. Generate the Doxygen documentation for your project.
  2. In your Doxygen documentation, you can link to the PlantUML diagram using the following syntax:
1
![Diagram Title](path/to/your/diagram.png)


This will create a clickable link to the PlantUML diagram in your Doxygen documentation. Make sure to replace "Diagram Title" with the title of your diagram and "path/to/your/diagram.png" with the path to your generated PlantUML diagram image file.

Related Threads:

How to make a link on an image in doxygen?
How to change the config file for mathjax in doxygen?
How to create double structure arc diagram using d3.js?
How to know if doxygen is locked?
How to refer to group in doxygen?
How to use doxygen with prolog?