I’m using Doxygen, and I would like to create a FAQ section.
Which doxygen tags would you use to indent questions and answers?
/**
@section Section_FAQ Frequently Asked Questions
Question: Why is your FAQ so ugly?
Answer: We are currently working on this issue, we should use some specific doxygen tags; a question has been posted on StackOverflow.
*/
Doxygen allows embedding of pseudo html tags, that get converted into the selected output format. See http://www.doxygen.nl/manual/htmlcmds.html
For example, you could use the classical html definition list structure:
The final appearance can then be fine tuned using the css file. For the Latex output however, it shows up on the same line (with doxygen 1.7.5).