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 |
|
<title>Wiki formatting</title>
|
|
6 |
<title>Format de la 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; }
|
... | ... | |
20 |
20 |
</head>
|
21 |
21 |
<body>
|
22 |
22 |
|
23 |
|
<h1>Wiki Syntax Quick Reference (Markdown)</h1>
|
|
23 |
<h1>Guia rapida de la Sintaxis de la Wiki (Markdown)</h1>
|
24 |
24 |
|
25 |
25 |
<table style="width:100%">
|
26 |
26 |
<tr><th colspan="3">Font Styles</th></tr>
|
27 |
|
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">**Strong**</td><td style="width:50%;"><strong>Strong</strong></td></tr>
|
28 |
|
<tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>*Italic*</td><td><em>Italic</em></td></tr>
|
29 |
|
<tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>~~Deleted~~</td><td><del>Deleted</del></td></tr>
|
30 |
|
<tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>`Inline Code`</td><td><code>Inline Code</code></td></tr>
|
31 |
|
<tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>~~~<br /> lines<br /> of code<br />~~~</td><td>
|
|
27 |
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Negreta" /></th><td style="width:50%;">**Negreta**</td><td style="width:50%;"><strong>Negreta</strong></td></tr>
|
|
28 |
<tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Cursiva" /></th><td>*Cursiva*</td><td><em>Cursiva</em></td></tr>
|
|
29 |
<tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Eliminat" /></th><td>~~Eliminat~~</td><td><del>Eliminat</del></td></tr>
|
|
30 |
<tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Codi en línia" /></th><td>`Codi en línia`</td><td><code>Codi en línia</code></td></tr>
|
|
31 |
<tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Linies de codi" /></th><td>~~~<br /> linies<br /> de codi<br />~~~</td><td>
|
32 |
32 |
<pre>
|
33 |
|
lines
|
34 |
|
of code
|
|
33 |
linies
|
|
34 |
de codi
|
35 |
35 |
</pre>
|
36 |
36 |
</td></tr>
|
37 |
37 |
|
38 |
|
<tr><th colspan="3">Lists</th></tr>
|
39 |
|
<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br /> * Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
|
40 |
|
<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td>1. Item 1<br /> 1. Sub<br />2. Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
|
|
38 |
<tr><th colspan="3">Llistes</th></tr>
|
|
39 |
<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Llista desordenada" /></th><td>* Article 1<br /> * Sub<br />* Article 2</td><td><ul><li>Article 1<ul><li>Sub</li></ul></li><li>Article 2</li></ul></td></tr>
|
|
40 |
<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Llista Ordenada" /></th><td>1. Article 1<br /> 1. Sub<br />2. Article 2</td><td><ol><li>Article 1<ol><li>Sub</li></ol></li><li>Article 2</li></ol></td></tr>
|
41 |
41 |
|
42 |
|
<tr><th colspan="3">Headings</th></tr>
|
43 |
|
<tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td># Title 1</td><td><h1>Title 1</h1></td></tr>
|
44 |
|
<tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>## Title 2</td><td><h2>Title 2</h2></td></tr>
|
45 |
|
<tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>### Title 3</td><td><h3>Title 3</h3></td></tr>
|
|
42 |
<tr><th colspan="3">Capçaleres</th></tr>
|
|
43 |
<tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Encapçament 1" /></th><td># Títol 1</td><td><h1>Títol 1</h1></td></tr>
|
|
44 |
<tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Encapçament 2" /></th><td>## Títol 2</td><td><h2>Títol 2</h2></td></tr>
|
|
45 |
<tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Encapçament 3" /></th><td>### Títol 3</td><td><h3>Títol 3</h3></td></tr>
|
46 |
46 |
|
47 |
47 |
<tr><th colspan="3">Links</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 links</th></tr>
|
52 |
|
<tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
|
53 |
|
<tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
|
54 |
|
<tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
|
|
52 |
<tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link a la pagina Wiki" /></th><td>[[Pagina Wiki]]</td><td><a href="#">Pagina Wiki</a></td></tr>
|
|
53 |
<tr><th></th><td>Assumpte #12</td><td>Assumpte <a href="#">#12</a></td></tr>
|
|
54 |
<tr><th></th><td>Revisió r43</td><td>Revisió <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 |
|
<tr><th colspan="3">Inline images</th></tr>
|
59 |
|
<tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>![](<em>image_url</em>)</td><td></td></tr>
|
60 |
|
<tr><th></th><td>![](<em>attached_image</em>)</td><td></td></tr>
|
|
58 |
<tr><th colspan="3">Imatges</th></tr>
|
|
59 |
<tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Imatge" /></th><td>![](<em>imatge_url</em>)</td><td></td></tr>
|
|
60 |
<tr><th></th><td>![](<em>imatge_adjunta</em>)</td><td></td></tr>
|
61 |
61 |
|
62 |
|
<tr><th colspan="3">Tables</th></tr>
|
|
62 |
<tr><th colspan="3">Taules</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>
|
... | ... | |
76 |
76 |
|
77 |
77 |
</table>
|
78 |
78 |
|
79 |
|
<p><a href="wiki_syntax_detailed_markdown.html" onclick="window.open('wiki_syntax_detailed_markdown.html', '', ''); return false;">More Information</a></p>
|
|
79 |
<p><a href="wiki_syntax_detailed_markdown.html" onclick="window.open('wiki_syntax_detailed_markdown.html', '', ''); return false;">Més informació</a></p>
|
80 |
80 |
|
81 |
81 |
</body>
|
82 |
82 |
</html>
|