【发布时间】:2012-08-07 10:05:11
【问题描述】:
我想在 doxygen 生成的最终文档中包含 \s\p。下面是来自 Java 文件的示例注释块:
/**
* @section Sample sample
* Need to use \s\p in the file.
*
*/
并且生成的文档应该是 Need to use \s\p in the file. 但是,当我运行 doxygen 时,它会将 \s\p 替换为 <computeruotput/> 并且 doxygen XML 输出中的结果是 Need to use <computeruotput/> in the file. 我如何才能在最终获得 \s\p输出而不是<computeruotput/>?
【问题讨论】: