假设我在JavaDoc定义中有以下部分:
/**
* [... blah blah ...] It will then call the <code>onFile...()</code>-methods
* on the provided event handler to report any changes. [... blah blah ...]
*/
这可能导致文本包装不方便,因此最终会跨越这样的行,例如:
............................... It will then call the onFile...
()-methods on the provided event handler to report any changes.
是否可以在JavaDoc定义中标记某些部分,以防止部分内部的换行?在上面的示例中:是否有某种方法可以阻止onFile...()
- 标记内的<code>
换行,但仍然与文本的其余部分内联?
答案 0 :(得分:0)
<nobr>
- 标签不是标准的html,因此以下内容可能是“坏样式”,但它有效:
/**
* [... blah blah ...] It will then call the <nobr><code>onFile...()</code>
* </nobr>-methods on the provided event handler to report any changes.
* [... blah blah ...]
*/
它将强制显示的文本改为先包裹:
............................... It will then call the
onFile...()-methods on the provided event handler to report any
changes.
现在,我只希望我可以定义自己的“宏标记”,以便我可以使用<nbc> ... </nbc>
代替<nobr><code> ... </code></nobr>
。