@@ -1,82 +1,82 | |||
|
1 | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
2 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 | 3 | <head> |
|
4 | 4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
5 | 5 | <meta http-equiv="Content-Style-Type" content="text/css" /> |
|
6 | 6 | <title>Wiki 格式設定</title> |
|
7 | 7 | <style type="text/css"> |
|
8 | 8 | h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; } |
|
9 | 9 | body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; } |
|
10 | 10 | table th { padding-top: 1em; } |
|
11 | 11 | table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;} |
|
12 | 12 | table td code { font-size: 1.2em; } |
|
13 | 13 | table td h1 { font-size: 1.8em; text-align: left; } |
|
14 | 14 | table td h2 { font-size: 1.4em; text-align: left; } |
|
15 | 15 | table td h3 { font-size: 1.2em; text-align: left; } |
|
16 | 16 | |
|
17 | 17 | table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; } |
|
18 | 18 | table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; } |
|
19 | 19 | </style> |
|
20 | 20 | </head> |
|
21 | 21 | <body> |
|
22 | 22 | |
|
23 | 23 | <h1>Wiki 語法快速對照表 (Markdown)</h1> |
|
24 | 24 | |
|
25 | 25 | <table style="width:100%"> |
|
26 | 26 | <tr><th colspan="3">字型樣式</th></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="強調粗體" /></th><td style="width:50%;">**強調粗體**</td><td style="width:50%;"><strong>強調粗體</strong></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜體" /></th><td>*斜體*</td><td><em>斜體</em></td></tr> |
|
29 | 29 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="刪除線" /></th><td>~~刪除線~~</td><td><del>刪除線</del></td></tr> |
|
30 | 30 | <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="內嵌程式碼" /></th><td>`內嵌程式碼`</td><td><code>內嵌程式碼</code></td></tr> |
|
31 | 31 | <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="預先格式化的段落文字" /></th><td>~~~<br /> 格式化<br /> 的段落文字<br />~~~</td><td> |
|
32 | 32 | <pre> |
|
33 | 33 | 格式化 |
|
34 | 34 | 的段落文字 |
|
35 | 35 | </pre> |
|
36 | 36 | </td></tr> |
|
37 | 37 | |
|
38 | 38 | <tr><th colspan="3">清單</th></tr> |
|
39 | 39 | <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="不排序清單" /></th><td>* 清單項目 1<br /> * 子清單項目<br />* 清單項目 2</td><td><ul><li>清單項目 1<ul><li>子清單項目</li></ul></li><li>清單項目 2</li></ul></td></tr> |
|
40 | 40 | <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="排序清單" /></th><td>1. 清單項目 1<br /> 1. 子清單項目<br />2. 清單項目 2</td><td><ol><li>清單項目 1<ol><li>子清單項目</li></ol></li><li>清單項目 2</li></ol></td></tr> |
|
41 | 41 | |
|
42 | 42 | <tr><th colspan="3">標題</th></tr> |
|
43 | 43 | <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="標題 1" /></th><td># 標題 1</td><td><h1>標題 1</h1></td></tr> |
|
44 | 44 | <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="標題 2" /></th><td>## 標題 2</td><td><h2>標題 2</h2></td></tr> |
|
45 | 45 | <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="標題 3" /></th><td>### 標題 3</td><td><h3>標題 3</h3></td></tr> |
|
46 | 46 | |
|
47 | 47 | <tr><th colspan="3">連結</th></tr> |
|
48 | 48 | <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr> |
|
49 | 49 | <tr><th></th><td>[Foo](http://foo.bar)</td><td><a href="#">Foo</a></td></tr> |
|
50 | 50 | |
|
51 | 51 | <tr><th colspan="3">Redmine 連結</th></tr> |
|
52 | 52 | <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="連結至一個 Wiki 頁面" /></th><td>[[Wiki 頁面]]</td><td><a href="#">Wiki 頁面</a></td></tr> |
|
53 |
<tr><th></th><td> |
|
|
53 | <tr><th></th><td>議題 #12</td><td>議題 <a href="#">#12</a></td></tr> | |
|
54 | 54 | <tr><th></th><td>版次 r43</td><td>版次 <a href="#">r43</a></td></tr> |
|
55 | 55 | <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr> |
|
56 | 56 | <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr> |
|
57 | 57 | |
|
58 | 58 | <tr><th colspan="3">內嵌圖像</th></tr> |
|
59 | 59 | <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="圖像" /></th><td></td><td></td></tr> |
|
60 | 60 | <tr><th></th><td></td><td></td></tr> |
|
61 | 61 | |
|
62 | 62 | <tr><th colspan="3">表格</th></tr> |
|
63 | 63 | <tr> |
|
64 | 64 | <th></th> |
|
65 | 65 | <td>| A | B | C |<br />|---|---|---|<br />| A | B | C |<br />| D | E | F |</td> |
|
66 | 66 | <td> |
|
67 | 67 | <table class="sample"> |
|
68 | 68 | <tbody> |
|
69 | 69 | <th>A</th><th>B</th><th>C</th> |
|
70 | 70 | <tr><td>A</td><td>B</td><td>C</td></tr> |
|
71 | 71 | <tr><td>D</td><td>E</td><td>F</td></tr> |
|
72 | 72 | </tbody> |
|
73 | 73 | </table> |
|
74 | 74 | </td> |
|
75 | 75 | </tr> |
|
76 | 76 | |
|
77 | 77 | </table> |
|
78 | 78 | |
|
79 | 79 | <p><a href="wiki_syntax_detailed_markdown.html" onclick="window.open('wiki_syntax_detailed_markdown.html', '', ''); return false;">更多資訊</a></p> |
|
80 | 80 | |
|
81 | 81 | </body> |
|
82 | 82 | </html> |
@@ -1,85 +1,85 | |||
|
1 | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
2 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 | 3 | <head> |
|
4 | 4 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
5 | 5 | <meta http-equiv="Content-Style-Type" content="text/css" /> |
|
6 | 6 | <title>Wiki 格式設定</title> |
|
7 | 7 | <style type="text/css"> |
|
8 | 8 | h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; } |
|
9 | 9 | body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; } |
|
10 | 10 | table th { padding-top: 1em; } |
|
11 | 11 | table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;} |
|
12 | 12 | table td code { font-size: 1.2em; } |
|
13 | 13 | table td h1 { font-size: 1.8em; text-align: left; } |
|
14 | 14 | table td h2 { font-size: 1.4em; text-align: left; } |
|
15 | 15 | table td h3 { font-size: 1.2em; text-align: left; } |
|
16 | 16 | |
|
17 | 17 | table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; } |
|
18 | 18 | table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; } |
|
19 | 19 | </style> |
|
20 | 20 | </head> |
|
21 | 21 | <body> |
|
22 | 22 | |
|
23 | 23 | <h1>Wiki 語法快速對照表</h1> |
|
24 | 24 | |
|
25 | 25 | <table style="width:100%"> |
|
26 | 26 | <tr><th colspan="3">字型樣式</th></tr> |
|
27 | 27 | <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="強調粗體" /></th><td style="width:50%;">*強調粗體*</td><td style="width:50%;"><strong>強調粗體</strong></td></tr> |
|
28 | 28 | <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜體" /></th><td>_斜體_</td><td><em>斜體</em></td></tr> |
|
29 | 29 | <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="底線" /></th><td>+底線+</td><td><ins>底線</ins></td></tr> |
|
30 | 30 | <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="刪除線" /></th><td>-刪除線-</td><td><del>刪除線</del></td></tr> |
|
31 | 31 | <tr><th></th><td>??引文??</td><td><cite>引文</cite></td></tr> |
|
32 | 32 | <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="內嵌程式碼" /></th><td>@內嵌程式碼@</td><td><code>內嵌程式碼 (inline code)</code></td></tr> |
|
33 | 33 | <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="預先格式化的段落文字" /></th><td><pre><br /> 格式化<br /> 的段落文字<br /></pre></td><td> |
|
34 | 34 | <pre> |
|
35 | 35 | 格式化 |
|
36 | 36 | 的段落文字 |
|
37 | 37 | </pre> |
|
38 | 38 | </td></tr> |
|
39 | 39 | |
|
40 | 40 | <tr><th colspan="3">清單</th></tr> |
|
41 | 41 | <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="不排序清單" /></th><td>* 清單項目 1<br />** 子清單項目<br />* 清單項目 2</td><td><ul><li>清單項目 1<ul><li>子清單項目</li></ul></li><li>清單項目 2</li></ul></td></tr> |
|
42 | 42 | <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="排序清單" /></th><td># 清單項目 1<br />## Sub<br /># 清單項目 2</td><td><ol><li>清單項目 1<ol><li>Sub</li></ol></li><li>清單項目 2</li></ol></td></tr> |
|
43 | 43 | |
|
44 | 44 | <tr><th colspan="3">標題</th></tr> |
|
45 | 45 | <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="標題 1" /></th><td>h1. 標題 1</td><td><h1>標題 1</h1></td></tr> |
|
46 | 46 | <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="標題 2" /></th><td>h2. 標題 2</td><td><h2>標題 2</h2></td></tr> |
|
47 | 47 | <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="標題 3" /></th><td>h3. 標題 3</td><td><h3>標題 3</h3></td></tr> |
|
48 | 48 | |
|
49 | 49 | <tr><th colspan="3">連結</th></tr> |
|
50 | 50 | <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr> |
|
51 | 51 | <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr> |
|
52 | 52 | |
|
53 | 53 | <tr><th colspan="3">Redmine 連結</th></tr> |
|
54 | 54 | <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="連結至一個 Wiki 頁面" /></th><td>[[Wiki 頁面]]</td><td><a href="#">Wiki 頁面</a></td></tr> |
|
55 |
<tr><th></th><td> |
|
|
55 | <tr><th></th><td>議題 #12</td><td>議題 <a href="#">#12</a></td></tr> | |
|
56 | 56 | <tr><th></th><td>版次 r43</td><td>版次 <a href="#">r43</a></td></tr> |
|
57 | 57 | <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr> |
|
58 | 58 | <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr> |
|
59 | 59 | |
|
60 | 60 | <tr><th colspan="3">內嵌圖像</th></tr> |
|
61 | 61 | <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="圖像" /></th><td>!<em>圖像_url</em>!</td><td></td></tr> |
|
62 | 62 | <tr><th></th><td>!<em>附加_圖像</em>!</td><td></td></tr> |
|
63 | 63 | |
|
64 | 64 | <tr><th colspan="3">表格</th></tr> |
|
65 | 65 | <tr> |
|
66 | 66 | <th></th> |
|
67 | 67 | <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. 資料列範圍 | B | C |<br />|\2. 資料行範圍 |</td> |
|
68 | 68 | <td> |
|
69 | 69 | <table class="sample"> |
|
70 | 70 | <tbody> |
|
71 | 71 | <th>A</th><th>B</th><th>C</th> |
|
72 | 72 | <tr><td>A</td><td>B</td><td>C</td></tr> |
|
73 | 73 | <tr><td rowspan="2">資料列範圍</td><td>B</td><td>C</td></tr> |
|
74 | 74 | <tr><td colspan="2">資料行範圍</td></tr> |
|
75 | 75 | </tbody> |
|
76 | 76 | </table> |
|
77 | 77 | </td> |
|
78 | 78 | </tr> |
|
79 | 79 | |
|
80 | 80 | </table> |
|
81 | 81 | |
|
82 | 82 | <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">更多資訊</a></p> |
|
83 | 83 | |
|
84 | 84 | </body> |
|
85 | 85 | </html> |
General Comments 0
You need to be logged in to leave comments.
Login now