gpt4 book ai didi

whitespace - 如何在 Doxygen 中的注释中添加空格

转载 作者:行者123 更新时间:2023-12-04 13:54:14 57 4
gpt4 key购买 nike

我想知道有什么方法可以在 Doxygen 的 html 的评论中插入空格吗?我在网上和 Doxygen 手册上搜索过,但找不到任何可以做到这一点的东西。

例如,我试图添加评论如下:

//!   motor_id,          motor direction,   accel,     min veloc,     max veloc\n
//! GAUGE_MOTOR_1, CLOCKWISE, 100, 1, 360\n
//! GAUGE_MOTOR_2, CLOCKWISE, 100, 1, 360\n
//! GAUGE_MOTOR_3, CLOCKWISE, 100, 1, 360\n
//! GAUGE_MOTOR_4, CLOCKWISE, 100, 1, 360\n
//! GAUGE_MOTOR_5, CLOCKWISE, 400, 200, 350\n

但是 html 输出显示的结果是这样的
motor_id, motor direction, accel, min veloc, max veloc
GAUGE_MOTOR_1, CLOCKWISE, 100, 1, 360
GAUGE_MOTOR_2, CLOCKWISE, 100, 1, 360
GAUGE_MOTOR_3, CLOCKWISE, 100, 1, 360
GAUGE_MOTOR_4, CLOCKWISE, 100, 1, 360
GAUGE_MOTOR_5, CLOCKWISE, 400, 200, 350

两个单词之间的空格会被 doxygen 自动缩小为一个空格。有没有人知道如何解决这个问题?那会有很大帮助。

非常感谢。

最佳答案

你可以使用

//! <pre>
//! motor_id, motor direction, accel, min veloc, max veloc
//! GAUGE_MOTOR_1, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_2, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_3, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_4, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_5, CLOCKWISE, 400, 200, 350
//! </pre>

或者
//! \verbatim
//! motor_id, motor direction, accel, min veloc, max veloc
//! GAUGE_MOTOR_1, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_2, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_3, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_4, CLOCKWISE, 100, 1, 360
//! GAUGE_MOTOR_5, CLOCKWISE, 400, 200, 350
//! \endverbatim

后者将真正按原样显示文本。
前者仍然会让 doxygen 解释块内的命令,同时保留空格。

关于whitespace - 如何在 Doxygen 中的注释中添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7205309/

57 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com