How to get ride of a empty page when using Doxygen to generate markdown user documentation -


currently using doxygen generate user document few markdown files. want generate custom navigation tree following:

  • install
  • --install on macos
  • --install on windows
  • --install on linux

and have 4 markdown pages, here. let's "install.md", "macos.md", "windows.md" , "linux.md".

my install.md file follow:

  • @page install
  • @subpage macos
  • @subpage windows
  • @subpage linux

and "macos.md" , "windows.md" , "linux.md" each has own page title: such @page macos , @page windows , @page linux.

the result good, generate few empty pages file name.

how rid of these empty page files?

thanks in advance.

i looked ages decent solution, , found:

in main markdown file (here install.md), define group, such as:

\defgroup grpdummypages hiddenempty @{ @} 

then in subpages, intance 'windows.md', add @ beginning:

\ingroup grpdummypages 

in tree view appeaer 'modules' section, sub-category 'hiddenempty', contain pages/files put ingroup command.


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -