I started out looking for a way to generate man pages from source code. I now have Doxygen setup, and it generates awesome HTML pages which are organized, helpful, etc.
But... it seems Doxygen sucks at creating decent or usable man pages. From more Google searches, it seems that may be the general consensus when it comes to using Doxygen to generate man pages. Is this really the case, or is there a page/hints which explains how to get Doxygen to do a better job with man pages?
I found one project -- doxy2man on GitHub -- which seems designed specifically to re-massage the Doxygen xml output files into man pages, but I'm curious to know if Doxygen itself can be coerced to do better.
The Doxygen options I'm using (there aren't many) for man pages are:
$ grep MAN Doxyfile | grep -v "#"
GENERATE_MAN = YES
MAN_OUTPUT = man
MAN_EXTENSION = .3
MAN_LINKS = YES