I am writing a C# library and would like to link to some classes' pages from my mainpage.md
file. However, the only way I can get Doxygen to make the links out of the text in the mainpage is by writing the fully-qualified names of the classes (eg. com.mycompany.myproject.MyClass
) in the mainpage, which is a little hard to read and a real pain to write repeatedly. I would like to be able to just write MyClass
in the mainpage and have it link to com.mycompany.myproject.MyClass
.
There is only one namespace in my project anyway: is there any way I can make the mainpage assume all names are implicitly within this namespace? At worst, is there a nice way to truncate the namespace from the class names during generation? Right now my best solution is to run over my HTML files with sed
after running Doxygen to edit index.html
myself.