基本格式设置
本部分介绍 Codebeamer 中支持的基本文本格式设置选项。
编写文本
---- = Make a horizontal ruler. Extra '-' is ignored.
\\ = Force a line break, \\\=force line break and clear.
// comment = markup comment line (nothing is rendered)

[link] = Creates a hyperlink to an internal wiki page called 'link'.
[alias|link] = Creates a hyperlink to an internal wiki page called 'link', but displays the text 'alias' to the user instead of 'link'.
[1]= Makes a reference to a footnote numbered 1.
[#1] = Marks the footnote number as 1.
[[link]= Creates text '[link]'.
~[link~] = Creates text '[link]' by escaping the square brackets with the tilde character.

!1 heading = Large heading with text 'heading'
!2 heading = Medium heading with text 'heading'
!3 heading = Small heading with text 'heading'
!4 heading = Smaller heading with text 'heading'
!5 heading = Smallest heading with text 'heading'

''text'' = Prints 'text' in italic.
__text__ = Prints 'text' in bold.
{{text}} = Prints 'text' in monospaced font.
^^text^^ = Prints 'text' in superscript.
,,text,, = Prints 'text' in subscript.

* text = Makes a bulleted list item with 'text'
# text = Makes a numbered list item with 'text'
;term:ex = Makes a definition for 'term' with the explanation 'ex'
超链接
链接可以是以 http://ftp://mailto:https://news: 开头的直接 URL。这些链接指向外部实体。
例如,要指向 Sun Java 官方主页,请使用 [http://java.sun.com],该主页更改为 http://java.sun.com/[Java home page|http://java.sun.com],然后更改为 Java 主页
*系统管理员可以通过配置自定义方案和自定义 URL 格式来对其进行配置。有关详情,请参阅 "validatorConfig" 应用程序配置。
预设格式文本
要添加预设格式文本 (如代码),请使用三个连续的大括号 { 来打开一个块,使用三个连续的大括号 } 来关闭一个块。
引用
例如,如果要引用某些文本,例如其他人先前添加的备注,请在该文本前面添加一个大于号 >
>> This is a very old comment.
> This is a question that I quote.
And this is my answer.
This is a very old comment.
This is a question that I quote.
And this is my answer.
备注
通过在定义中包含空 'term',可以使用 ';:' 向其他人编写的文本添加简短注释,如下所示:
;:''Comment here.''
此结果如下所示:
Comment here.
这对您有帮助吗?