I have a project with a set of markdown pages that are interlinked with links such as
[Go to this page](subdir/MyOtherPage.md)
The pages al
The following steps may solve the problem,
STRIP_FROM_PATH
to Doxyfile directory. There is a problem with relative path while linking the markdown files.append the following code in doxygen source file src/docparser.cpp at 2438 line number containing code pd = Doxygen::pageSDict->find(target);
(if it is not there already). It fixes the markdown file searching in the page-list.
if(pd == 0 && lang == SrcLangExt_Markdown) {pd = Doxygen::pageSDict->find(markdownFileNameToId(target));}
Finally compile the doxygen and try again.
It worked for me.