Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to add custom (non-project) files to generate some extra pages with Doxygen.

I am (was actually) unsure how these files should be named and how their content should be formatted.

share|improve this question

4 Answers

Just for completeness: there are 3 possible extensions which doxygen treats as additional documentation files: .dox, .txt, and .doc.

Files which such extension are hidden from the file index. Inside the file you need to put one or more C/C++ style comment blocks.

share|improve this answer
Thanks for completing my answer! – Veger Jun 14 '11 at 20:49
up vote 9 down vote accepted

I having been searching quite a lot before I found the answer, so I thought it would be nice to share!

According to this Doxygen gotchas article I finally found that: you need to add a file with the dox extension. Its content should contain C-style comment blocks:

/*!
  \page My test page
  contents
  ...
  more contents
*/

Make sure your custom files are placed in a directory which is included in INPUT setting or in the current directory if INPUT is left empty, so these files can be found.

share|improve this answer
1  
Since no-one came up with a better/nicer solution, I accepted my own answer – Veger Jun 29 '10 at 9:35
I think there is a small error in your code sample. The token before the page special command must be either "@" or "\". I tried to use your sample as is but the page was not generated, however with that small fix it worked. – wil Mar 12 '12 at 1:57
You are right! Thanks for pointing out – Veger Mar 12 '12 at 8:39
Markdown is now also available. Here's how to use it. – antitoxic Mar 13 '12 at 11:18

For even more completeness, starting with Doxygen version 1.8 (I believe), it now supports additional text files which are very similar to markdown syntax. You no longer need to use C/C++ style comment blocks. Instead, just write almost normal text and make sure that the text file is in the INPUT path, and that your doxygen scan actually looks for files with .markdown extension (or any other extension you choose to use, like .md).

share|improve this answer

Just list your custom files in the INPUT macro in your doxyfile. You can choose whatever name you find appropriate. Format is text with Doxygen tags.

share|improve this answer
I tried that, but the file got included as a source file (added into list of files). Using the dox extension seems to prevent this – Veger Jun 16 '10 at 10:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.