Hi all,
I am trying to write a user manual along the API reference. I have managed to arrange the top tabs so that there is a "Manual" tab pointing to the Markdown files. This is done through the line:
<tab type="pages" visible="yes" title="Manual" intro=""/>
in the DoxygenLayout.xml.
In the left navigation bar, however, all the markdown pages appear as independent sections. Is there a way to group them all under a super section named "Manual"?
Thanks,
Albert
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I am trying to write a user manual along the API reference. I have managed to arrange the top tabs so that there is a "Manual" tab pointing to the Markdown files. This is done through the line:
<tab type="pages" visible="yes" title="Manual" intro=""/>
in the DoxygenLayout.xml.
In the left navigation bar, however, all the markdown pages appear as independent sections. Is there a way to group them all under a super section named "Manual"?
Thanks,
Albert
Hi all,
I finally found how to do so. I created an extra file named "0-Manual.md" containing:
`
User Manual {#userManual}
==========================
Content:
and the files page_1.md, page_2.md and page_3.md, start with:
Page 1 {#page_1}
===================
`
and so on for pages 2 and 3.
I hope it helps somebody,
Albert