Doxygen now allows to link md files to other md files with regular markdown syntax: How do I link between markdown documents in doxygen?
I have the following file structure:
MyDir/README.md
MyDir/Docs/other.md
Linking from README.md
to other.md
is straigforward:
[My link](Docs/other.md)
However linking from other to Readme is not working:
[My back link](README.md)
Since doxygen generates its links relative to where it is run, and I am running doxygen on MyDir
, that should be the correct relative path. I also tried
[My back link](../README.md)
Just in case, but no luck.