开发者

How to disable doxygen markup

开发者 https://www.devze.com 2023-01-28 20:40 出处:网络
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?

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
*/
0

精彩评论

暂无评论...
验证码 换一张
取 消