【发布时间】:2016-06-18 11:09:41
【问题描述】:
我有一个带有图像的 Doxygen 评论:
/**
* @brief some brief comment
*
* More text:
* @image html image1.png
* @image html image2.png
*/
在生成 HTML 文档时,这两个图像直接位于彼此下方。我想在它们之间放置一个空行。
在注释中简单地输入一个空行(见下面的代码)是没有效果的。
/**
* @brief some brief comment
*
* More text:
* @image html image1.png
*
* @image html image2.png
*/
我怎样才能做到这一点?
【问题讨论】:
标签: doxygen