I am producing the documentation with doxygen, and I have a tutorials tab where I have few pages links I produce in doxygen MarkupLanguage.
In my DoxygenLayout.xml I have the following
<tab type="pages" visible="yes" title="Tutorials" intro="Here ..." />
Then I have a directory in my doxygen folder named ../tutorials/
I include that folder on my doxygen.cfg
, and include .md
files
INPUT = ../../source ../tutorials/
FILE_PATTERNS = *.cxx *.h *.md
The problem is if I specify inside the file tutorial1.md
\page tut_1 A first tutorial
The tutorials TAB will show 2 entries for that page. One with the name of the file (tutorial1) and another with the name of the page (A first tutorial).
What to do so that it only shows the entry "A first tutorial?"
If I do not specify the \page
tag then I will have a single entry, but then I cannot reference to this page from other pages.
Is there a simple solution?