我试图将整行文字粗体化。 Doxygen文档声明:
\ b使用粗体显示参数。当量 到< B个字LT; / B取代。要以粗体显示多个单词< B个多 词语LT; / B个。
我试过(在阅读HTML命令部分之前):
我查看了HTML标签< B个和< / B个但我不想将格式与HTML输出联系起来。除此之外,当我尝试' \\!< B个很多单词< / B个'它不起作用。
注意:
答案 0 :(得分:2)
你的第二次尝试是在doxygen中加粗多个单词的正确方法(当然没有b标签之间的空格)。请注意,如果您正在为注释执行非标准分隔符,则需要指定doxygen配置文件中的那些分隔符。
/**
@mainpage
This short example contains some text markup
illustrating how to do html formatting in doxygen.
.
This will be < em>italic< /em> and this is
< b>how you make lots of words bold.< /b> You will
have to remove the spaces from the tags.
*/
答案 1 :(得分:2)
从Doxygen 1.8.0开始,您还可以使用Markdown语法 **粗体文字** 。
/**
@mainpage
**This will be rendered as bold text**
*/