1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
<head>
|
5
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
6
|
<meta http-equiv="Content-Style-Type" content="text/css"/>
|
7
|
<title>Форматирование Wiki</title>
|
8
|
<style type="text/css">
|
9
|
h1 {
|
10
|
font-family: Verdana, sans-serif;
|
11
|
font-size: 14px;
|
12
|
text-align: center;
|
13
|
color: #444;
|
14
|
}
|
15
|
|
16
|
body {
|
17
|
font-family: Verdana, sans-serif;
|
18
|
font-size: 12px;
|
19
|
color: #444;
|
20
|
}
|
21
|
|
22
|
table th {
|
23
|
padding-top: 1em;
|
24
|
}
|
25
|
|
26
|
table td {
|
27
|
vertical-align: top;
|
28
|
background-color: #f5f5f5;
|
29
|
height: 2em;
|
30
|
vertical-align: middle;
|
31
|
}
|
32
|
|
33
|
table td code {
|
34
|
font-size: 1.2em;
|
35
|
}
|
36
|
|
37
|
table td h1 {
|
38
|
font-size: 1.8em;
|
39
|
text-align: left;
|
40
|
}
|
41
|
|
42
|
table td h2 {
|
43
|
font-size: 1.4em;
|
44
|
text-align: left;
|
45
|
}
|
46
|
|
47
|
table td h3 {
|
48
|
font-size: 1.2em;
|
49
|
text-align: left;
|
50
|
}
|
51
|
|
52
|
</style>
|
53
|
</head>
|
54
|
<body>
|
55
|
|
56
|
<h1>Синтаксис Wiki Краткая Справка</h1>
|
57
|
|
58
|
<table width="100%">
|
59
|
<tr>
|
60
|
<th colspan="3">Стили Шрифтов</th>
|
61
|
</tr>
|
62
|
<tr>
|
63
|
<th><img src="../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Выделенный"/></th>
|
64
|
<td width="50%">*Выделенный*</td>
|
65
|
<td width="50%"><strong>Выделенный</strong></td>
|
66
|
</tr>
|
67
|
<tr>
|
68
|
<th><img src="../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Наклонный"/></th>
|
69
|
<td>_Наклонный_</td>
|
70
|
<td><em>Наклонный</em></td>
|
71
|
</tr>
|
72
|
<tr>
|
73
|
<th><img src="../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Подчёркнутый"/></th>
|
74
|
<td>+Подчёркнутый+</td>
|
75
|
<td>
|
76
|
<ins>Подчёркнутый</ins>
|
77
|
</td>
|
78
|
</tr>
|
79
|
<tr>
|
80
|
<th><img src="../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Зачёркнутый"/></th>
|
81
|
<td>-Зачёркнутый-</td>
|
82
|
<td>
|
83
|
<del>Зачёркнутый</del>
|
84
|
</td>
|
85
|
</tr>
|
86
|
<tr>
|
87
|
<th></th>
|
88
|
<td>??Цитата??</td>
|
89
|
<td><cite>Цитата</cite></td>
|
90
|
</tr>
|
91
|
<tr>
|
92
|
<th><img src="../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Вставка Кода"/></th>
|
93
|
<td>@Вставка Кода@</td>
|
94
|
<td><code>Вставка Кода</code></td>
|
95
|
</tr>
|
96
|
<tr>
|
97
|
<th><img src="../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Отформатированный текст"/></th>
|
98
|
<td><pre><br/> строки<br/> кода<br/></pre></td>
|
99
|
<td>
|
100
|
<pre>
|
101
|
строки
|
102
|
кода
|
103
|
</pre>
|
104
|
</td>
|
105
|
</tr>
|
106
|
|
107
|
<tr>
|
108
|
<th colspan="3">Списки</th>
|
109
|
</tr>
|
110
|
<tr>
|
111
|
<th><img src="../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Несортированный список"/></th>
|
112
|
<td>* Элемент 1<br/>* Элемент 2</td>
|
113
|
<td>
|
114
|
<ul>
|
115
|
<li>Элемент 1</li>
|
116
|
<li>Элемент 2</li>
|
117
|
</ul>
|
118
|
</td>
|
119
|
</tr>
|
120
|
<tr>
|
121
|
<th><img src="../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Сортированный список"/></th>
|
122
|
<td># Элемент 1<br/># Элемент 2</td>
|
123
|
<td>
|
124
|
<ol>
|
125
|
<li>Элемент 1</li>
|
126
|
<li>Элемент 2</li>
|
127
|
</ol>
|
128
|
</td>
|
129
|
</tr>
|
130
|
|
131
|
<tr>
|
132
|
<th colspan="3">Заголовки</th>
|
133
|
</tr>
|
134
|
<tr>
|
135
|
<th><img src="../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Заголовок 1"/></th>
|
136
|
<td>h1. Название 1</td>
|
137
|
<td><h1>Название 1</h1></td>
|
138
|
</tr>
|
139
|
<tr>
|
140
|
<th><img src="../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Заголовок 2"/></th>
|
141
|
<td>h2. Название 2</td>
|
142
|
<td><h2>Название 2</h2></td>
|
143
|
</tr>
|
144
|
<tr>
|
145
|
<th><img src="../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Заголовок 3"/></th>
|
146
|
<td>h3. Название 3</td>
|
147
|
<td><h3>Название 3</h3></td>
|
148
|
</tr>
|
149
|
|
150
|
<tr>
|
151
|
<th colspan="3">Ссылки</th>
|
152
|
</tr>
|
153
|
<tr>
|
154
|
<th></th>
|
155
|
<td>http://foo.bar</td>
|
156
|
<td><a href="#">http://foo.bar</a></td>
|
157
|
</tr>
|
158
|
<tr>
|
159
|
<th></th>
|
160
|
<td>"Foo":http://foo.bar</td>
|
161
|
<td><a href="#">Foo</a></td>
|
162
|
</tr>
|
163
|
|
164
|
<tr>
|
165
|
<th colspan="3">Ссылки Redmine</th>
|
166
|
</tr>
|
167
|
<tr>
|
168
|
<th><img src="../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Ссылка на Wiki страницу"/></th>
|
169
|
<td>[[Wiki страница]]</td>
|
170
|
<td><a href="#">Wiki страница</a></td>
|
171
|
</tr>
|
172
|
<tr>
|
173
|
<th></th>
|
174
|
<td>Задача #12</td>
|
175
|
<td>Задача <a href="#">#12</a></td>
|
176
|
</tr>
|
177
|
<tr>
|
178
|
<th></th>
|
179
|
<td>Фиксация r43</td>
|
180
|
<td>Фиксация <a href="#">r43</a></td>
|
181
|
</tr>
|
182
|
<tr>
|
183
|
<th></th>
|
184
|
<td>commit:f30e13e43</td>
|
185
|
<td><a href="#">f30e13e4</a></td>
|
186
|
</tr>
|
187
|
<tr>
|
188
|
<th></th>
|
189
|
<td>source:some/file</td>
|
190
|
<td><a href="#">source:some/file</a></td>
|
191
|
</tr>
|
192
|
|
193
|
<tr>
|
194
|
<th colspan="3">Вставка изображений</th>
|
195
|
</tr>
|
196
|
<tr>
|
197
|
<th><img src="../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Изображение"/></th>
|
198
|
<td>!<em>url_картинки</em>!</td>
|
199
|
<td></td>
|
200
|
</tr>
|
201
|
<tr>
|
202
|
<th></th>
|
203
|
<td>!<em>вложенный_файл</em>!</td>
|
204
|
<td></td>
|
205
|
</tr>
|
206
|
</table>
|
207
|
|
208
|
<p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">Больше информации</a></p>
|
209
|
|
210
|
</body>
|
211
|
</html>
|