How to disable doxygen markup
I would like to disable all doxygen markup handling (in my function header). I've read through all the doxygen options (in doxywizard) but can't seem to find the option. Does it开发者_如何学C exist?
EG:
/** -------------------------------------------------------------------------
Function : <INIT>
: \Test
Purpose : @50Hz
*/
None of the characters in the description above should trigger markup handling (@, \, <>, etc).
You can wrap any text you want to appear verbatim in the verbatim/endverbatim tags.
/** -------------------------------------------------------------------------
\verbatim
Function : <INIT>
: \Test Purpose : @50Hz
\endverbatim
*/
精彩评论