c++ - Exclude "README.md" from doxygen's "File documentation" list -
i struggling following problem. use doxygen document c++ code, , use readme.md
document main page of code documentation, via
input += readme.md use_mdfile_as_mainpage = readme.md
in doyxgen configuration file. works, except file readme.md
appears in "file documentation" section of generated .pdf out of refman.tex
file (it doesn't appear in "file list" section), like
8.24 /users/username/qpp/readme.md file reference . . . . . . 123
this extremely annoying, don't want file appear in file list. there way remove it? cannot add exclude =
list, if do, won't used anymore generate main page.
as of today, still haven't found elegant solution. can in case don't want readme.md
appear in file reference section inside .pdf manually comment line
%\input{_r_e_a_d_m_e_8md}
in generated refman.tex
file, , after compile .tex file produce final .pdf
latexmk -pdf refman.tex
the issue not appear in html
generated documentation, in latex
one.
Comments
Post a Comment