Project

General

Profile

SimplifiedChineseWikiFormatting » History » Version 11

Charles Sun, 2018-06-08 04:50

1 8 Charles Sun
h1. Textile 格式化
2 1 justim chan
3
4 8 Charles Sun
以下是 *Textile* 的格式化信息. 有关 *Markdown* 的格式化信息请参见 [[RedmineTextFormattingMarkdown]].
5
有关当前Textile支持的限制,请参见 #6269, #10078 (Definition Lists).
6
7
{{>TOC}}
8
9 3 justim chan
h2. 链接
10
11
h3. Redmine 链接
12
13 8 Charles Sun
{{include(RedmineTextFormattingRedmineLinksSimplifiedChinese)}}
14 3 justim chan
15
h3. 外部链接
16
17 9 Charles Sun
URL地址(http, https, ftp 和 ftps)可以被自动转换成可点击的链接: 
18
* *http://www.redmine.org* -- 外部链接至redmine官网: http://www.redmine.org
19 3 justim chan
20 9 Charles Sun
URL地址也可以使用不同的文本来显示:
21 10 Charles Sun
* *"Redmine官网":http://www.redmine.org* -- 以不同的文本显示Redmine官网的外部链接:"Redmine官网":http://www.redmine.org
22 1 justim chan
* *!http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org* -- 用带标题的外部图片来表示一个外部链接:
23
24
p=. !http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org
25 9 Charles Sun
26
链接的 UNC 路径中可使用文件 URI :
27
* *"\\server\share$":file://///server/share%24* -- 使用文件 URI 的 UNC 路径: "\\server\share$":file://///server/share%24
28
你需要对特殊字符做 "URL 编码":http://www.w3schools.com/tags/ref_urlencode.asp,比如: 空格, $, á, é, í, ó, ú, 等等。
29
30 3 justim chan
31
h3. Email地址
32
33
Email地址能够被自动转换成可点击的链接:
34
35 11 Charles Sun
* *someone@foo.bar* -- 链接到一个email地址: someone@foo.bar
36 3 justim chan
* *"Email someone":mailto:someone@foo.bar* -- 用不同的文本显示Email链接: "Email someone":mailto:someone@foo.bar
37
38 1 justim chan
还可以将更加复杂的指令添加到Email链接中。可以设置默认的主题、正文和抄送地址。但请注意,这些字段里的空格都要编码成%20(详细可参考URL编码)。
39 11 Charles Sun
* *"Email webmaster and admin":mailto:webmaster@foo.bar?cc=admin@foo.bar* -- Email给webmaster,抄送给admin: "Email webmaster and admin":mailto:webmaster@foo.bar?cc=admin@foo.bar
40
* *"Email someone for help":mailto:someone@foo.bar?subject=Website%20Help* -- 主题为"Website Help"的Email链接: "Email someone for help":mailto:someone@foo.bar?subject=Website%20Help
41
* *"Email someone for help":mailto:someone@foo.bar?subject=Website%20Help&body=My%20problem%20is%20* -- 主题为"Website Help",缺省正文为"My problem is "的Email链接: "Email someone for help":mailto:someone@foo.bar?subject=Website%20Help&body=My%20problem%20is%20
42 3 justim chan
43 4 chigeon null
h2. 文本格式
44 6 chigeon null
45
对于像是标题、粗体、表格、列表等文字格式, Redmine 支持使用 "Textile":http://en.wikipedia.org/wiki/Textile_%28markup_language%29 语法。 可以到 http://redcloth.org/hobix.com/textile/ 查找关于使用这些特性的信息。下面将展示其中的一些常用的语法。
46
47
h3. 字体风格
48
49
<pre><code>* *粗体*
50
* _斜体_
51
* *_粗体 斜体_*
52
* +下划线+
53
* -中划线-
54
* 文字 ^上标^
55
* 文字 ~下标~
56
* @inline monospace@
57
* <notextile>正常字体 *粗体* _斜体_ 正常字体;E=mc ^2^</notextile>
58
* <notextile>正常字体<notextile></notextile>*粗体*<notextile></notextile>_斜体_<notextile></notextile>正常字体;E=mc<notextile></notextile>^2^</notextile>
59
* <notextile>转义: <notextile>*粗体* _斜体_ @inlinemono(等宽字体)@</notextile> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  或者使用 HTML 代码:&#42;粗体&#42; &#95;斜体&#95; &#64;inlinemono(等宽字体)&#64;</notextile>
60
* <notextile><pre>*一些文字*      "一个链接":http://www.redmine.org</pre></notextile>
61
* <notextile><pre><notextile></notextile>*一些文字*      "一个链接":http://www.redmine.org</pre></notextile>
62
</code></pre>
63
64
显示为:
65
66
 * *粗体*
67
 * _斜体_
68
 * *_粗体 斜体_*
69
 * +下划线+
70
 * -中划线-
71
 * 文字 ^上标^
72
 * 文字 ~下标~
73
 * @inline monospace(等宽字体)@
74
 * 正常字体 *粗体* _斜体_ 正常字体;E=mc ^2^
75
 * 正常字体<notextile></notextile>*粗体*<notextile></notextile>_斜体_<notextile></notextile>正常字体;E=mc<notextile></notextile>^2^
76
 * 转义: <notextile>*粗体* _斜体_ @inlinemono(等宽字体)@</notextile> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 或者用 HTML 代码替代: &#42;粗体&#42; &#95;斜体&#95; &#64;inlinemono(等宽字体)&#64;
77
 * <pre>*一些文字*      "一个链接":http://www.redmine.org</pre>
78
 * <pre><notextile></notextile>*一些文字*      "一个链接":http://www.redmine.org</pre>
79
80
h3. 加入色彩
81
82
<pre><code><notextile>* %{color:red}红色% %{color:green}绿色% %{color:yellow}黄色% %{color:#82B6E1}蓝色%
83
* %{color:red}红色%<notextile></notextile>%{color:green}绿色%<notextile></notextile>%{color:yellow}黄色%<notextile></notextile>%{color:#82B6E1}蓝色%
84
* %{background:lightgreen}淡绿背景% %{background:yellow}黄色背景%
85
* %{background:lightgreen}淡绿背景%<notextile></notextile>%{background:yellow}黄色背景%
86
</notextile></code></pre>
87
88
显示为:
89
90
 * %{color:red}红色% %{color:green}绿色% %{color:yellow}黄色% %{color:#82B6E1}蓝色%
91
 * %{color:red}红色%<notextile></notextile>%{color:green}绿色%<notextile></notextile>%{color:yellow}黄色%<notextile></notextile>%{color:#82B6E1}蓝色%
92
 * %{background:lightgreen}淡绿背景% %{background:yellow}黄色背景%
93
 * %{background:lightgreen}淡绿背景%<notextile></notextile>%{background:yellow}黄色背景%
94
95
h3. 内嵌图片
96
97
* *!;image_url!;* 显示位于“image_url”路径的图片
98
* *!;>image_url!;* 使图片在页面右侧显示
99
* *!;image_url(图片名称)!;* 改变图片显示的名称为“图片名称”
100
* *!;image_url!;:URL* 显示位于“image_url”路径的图片, 并给图片加上超链接“URL”
101
102
你可以上传图片附件到 wiki 页面,然后使用它的文件名作为路径: *!;已上传的图片.png!;*
103
104
h3. 标题
105
106
<pre><code>h1. 一级标题
107
108
h2. 二级标题
109
110
h3. 三级标题
111
</code></pre>
112
113
你可以使用“#一级标题”、“#二级标题”等等来链接到这些标题
114
115
h3. 段落
116
117
<pre><code>p. 向左对齐
118
119
  p(. 向右缩进一个字母的距离
120
121
    p((. 向右缩进两个字母的距离
122
    (也会对这一行以及接下来的每一行起到作用)
123
124
                                                                                   p>. 向右对齐
125
126
                                                                        p)))>. 向右缩进三个字母的距离
127
128
                           p=. 这一行位于中央
129
</code></pre>
130
131
h3. 水平分割线
132
133
@----@
134
显示为:
135
136
----
137
138
h3. 抑制保留字符
139
140
<pre> <pre> *这里的文字不会被加粗* </pre> </pre>
141
显示为:
142
143
<pre> *这里的文字不会被加粗* </pre>
144
145
h3. 块引用
146
147
在段落前加上 *bq.*:
148
149
<pre><code>bq. Rails 是应用了 MVC 设计模式的全栈型框架,用于开发数据库支持的 Web 应用程序。
150
基于 Rails 进行项目开发,需要你准备的只是一个数据库和一个 Web 服务器。
151
</code></pre>
152
153
显示为:
154
155
bq. Rails 是应用了 MVC 设计模式的全栈型框架,用于开发数据库支持的 Web 应用程序。
156
基于 Rails 进行项目开发,需要你准备的只是一个数据库和一个 Web 服务器。
157
158
你也可以在每一行开头加上“>”来实现引用,并且可以叠加“>”作为二级引用:
159
160
<pre>
161
>> Rails 是应用了 MVC 设计模式的全栈型框架,用于开发数据库支持的 Web 应用程序。
162
>> 基于 Rails 进行项目开发,需要你准备的只是一个数据库和一个 Web 服务器。
163
> 很不错!
164
</pre>
165
166
显示为:
167
168
>> Rails 是应用了 MVC 设计模式的全栈型框架,用于开发数据库支持的 Web 应用程序。
169
>> 基于 Rails 进行项目开发,需要你准备的只是一个数据库和一个 Web 服务器。
170
> 很不错!
171
172
h3. 无序列表
173
174
<pre>
175
* 条目 1
176
* 条目 2
177
** 条目 21
178
** 条目 22
179
* 条目 3
180
</pre>
181
182
显示为:
183
184
* 条目 1
185
* 条目 2
186
** 条目 21
187
** 条目 22
188
* 条目 3
189
190
h3. 有序列表
191
192
<pre>
193
# 条目 1
194
# 条目 2
195
# 条目 3
196
## 条目 3.1
197
## 条目 3.2
198
</pre>
199
200
显示为:
201
202
# 条目 1
203
# 条目 2
204
# 条目 3
205
## 条目 3.1
206
## 条目 3.2
207
208
h3. 表格
209
210
<pre>
211
|_.UserID      |_.Name          |_.Group     |_. attribute list   |
212
|Starting with | a              |   simple   |row                 |
213
|\3=.IT                                      |<. align left       |
214
|1             |Artur Pirozhkov |/2.Users    |>. align right      |
215
|2             |Vasya Rogov     |=. center   |
216
|3             |John Smith      |Admin
217
                                 (root)      |^. valign top       |
218
|4             |-               |Nobody
219
                                 (anonymous) |~. valign bottom    |
220
</pre>
221
222
显示为:
223
(多个空格会被 Textile 识别为一个空格)
224
225
|_.UserID      |_.Name          |_.Group     |_. attribute list   |
226
|Starting with | a              |   simple   |row                 |
227
|\3=.IT                                      |<. align left       |
228
|1             |Artur Pirozhkov |/2.Users    |>. align right      |
229
|2             |Vasya Rogov     |=. center   |
230
|3             |John Smith      |Admin
231
                                 (root)      |^. valign top       |
232
|4             |-               |Nobody
233
                                 (anonymous) |~. valign bottom    |
234
235 7 chigeon null
要在表格中使用“|”字符(比如 Wiki 链接),你需要使用下面示例中用到的格式,以防止“|”被 Textile 识别为列分割符。
236 6 chigeon null
237
|_.输入 |_. 输出|
238
|*<notextile><notextile>|</notextile></notextile>*|<notextile>|</notextile>|
239
240
h2. 代码高亮显示
241
242
Redmine 应用的代码高亮显示依赖于 "CodeRay":http://coderay.rubychan.de/ 。CodeRay 是完全用 Ruby 语言写的快速代码高亮库,现在支持的语言包括 C、C++、CSS、Delphi、Diff、Groovy、HTML、Java、Javascript、JSON、Nitro-XHTML、PHP、Python、RHTML、Ruby、Scheme、SQL、XML 和 YAML。
243
244
使用下面的格式来实现代码高亮显示:
245
246
<pre><code><pre><code class="ruby">
247
  这里写 Ruby 代码
248
</code></pre>
249
</code></pre>
250
251
示例:
252
253
<pre><code class="ruby">
254
# The Greeter class
255
class Greeter
256
  def initialize(name)
257
    @name = name.capitalize
258
  end
259
 
260
  def salute
261
    puts "Hello #{@name}!"
262
  end
263
end
264
</code></pre>