\ todo中的Doxygen和预先格式化的文本

时间:2013-05-29 08:29:23

标签: fonts size doxygen fixed todo

我试图在\ todo中使用一些预先格式化的文本(因为我需要一个字符大小固定的字体)。所以我尝试使用<pre></pre><tt></tt><code></code> ...

我确实得到了固定宽度的字体,但问题是如果我在该块之前放置\todo标志,\ todo将为空(它将忽略以<pre> {开头的块{1}}或<tt>

要明确:

  • 这个todo有效;它显示一个待办事项,但文本没有预先格式化

    <code>
  • 这就是我想要做的,但它不起作用;待办事项是空的

    @todo 
        1. First thing
        2. Second thing
    

编辑:不幸的是我无法上传图片(信誉不足)

1 个答案:

答案 0 :(得分:1)

您可能需要逐行设置格式,而不是尝试预格式化整个块。例如,您可以指定:

* @todo
*     1. <tt>First thing</tt>
*     2. <tt>Second thing</tt>

或者,如果您启用了降价支持,则应该能够指定:

* @todo
*     1. `First thing`
*     2. `Second thing`

通过降价支持,您似乎还可以使用带@todo的隔离代码块:

* @todo
* ~~~~
*     1. First thing
*     2. Second thing
* ~~~~

或者,如果您已禁用降价支持,或者使用较旧版本的Doxygen: