Search code examples
doxygenmarkup

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 exist?

EG:

/** -------------------------------------------------------------------------
Function    : <INIT> 
            : \Test
Purpose     : @50Hz
*/

None of the characters in the description above should trigger markup handling (@, \, <>, etc).


Solution

  • You can wrap any text you want to appear verbatim in the verbatim/endverbatim tags.

    /**    -------------------------------------------------------------------------
    \verbatim 
        Function    : <INIT> 
                    : \Test Purpose     : @50Hz 
    \endverbatim
    */