Commit 4e3cff1e75ebf19cac4ebe602cc76e5027ecf6e1

Documentation for the syntax.
TODO
(2 / 8)
  
11Backend
22-------
3- Add diffs to history
4- Auto-link plain-text links
53- Wikify links
4- Auto-link plain-text links
65- Auto-insert newline after h?
76- Add section edit links ?
8
9Default theme
10-------------
11- Make the form as high as possible
12- Add Tables to the CSS
13- Provide some documentation for the wiki syntax
7- Add diffs to history
148
159ExtJS theme
1610-----------
  
2323 </form>
2424 </div>
2525
26 <div id="footer" style='text-align: left;'>
27 <p class='syntax'>
28 <span style='font-weight: bold;'>Syntax:</span> Besides normal HTML
29 code (e.g. <code>&lt;b&gt;Bold&lt;/b&gt;</code>), the following
30 markup is available as well:
31 <ul>
32 <li><code>h1. Section</code>, <code>h2. Subsection</code>:
33 Section headers
34 <li><code># Item</code>, <code>## Second-level item</code>:
35 Enumerated list</li>
36 <li><code>* Item</code>, <code>** Second-level item</code>:
37 Itemized list</li>
38 <li><code>"Some URL":http://someurl.com</code>: External links</li>
39 <li><code>!/path/to/image.jpg!</code>: Embedded images</li>
40 <li><code>_Emphasised text_, *strong text*, ??citations??, @code@,
41 +Inserted text+, -Removed text-</code> &rarr;
42 <em>Emphasized text</em>, <strong>strong text</strong>,
43 <cite>citation</cite>, <ins>inserted text</ins>, <del>removed
44 text</del></li>
45 <li><code>H~2~O, A^2^</code> &rarr; H<sub>2</sub>O, A<sup>2</sup></li>
46 <li><code>Abbr(Abbreviation)</code> &rarr; <acronym tytle="Abbreviation">Abbr</acronym></li>
47 <li><code>|Cell 1|Cell 2|</code>: Tables</li>
48 <li><code>%{color:red}Red% text</code> &rarr; <span style='color:red'>Red</span> text</li>
49 </ul>
50 For more markup styles, see the
51 <a href="http://hobix.com/textile/">Textile reference</a>.
52 </p>
53 </div>
54
2655 </body>
2756</html>
  
5050 margin: 0;
5151}
5252
53#content {
54 padding-top: 10pt;
55 padding-bottom: 10pt;
56}
57
5358#content h1 {
5459 background-color: #7799BB;
5560 font-color: white;
8585 font-family: monospace;
8686}
8787
88#content table {
89 border-collapse: collapse;
90}
91
92#content td {
93 border: thin dashed gray;
94}
95
96
8897#footer {
8998 text-align: center;
9099 font-size: 0.7em;
91100 border-top: thin solid #999;
92 text-align: center;
93101 padding: .5em;
94102 background-color: #ddd;
95103 margin: 0em;
104}
105
106#footer p.syntax {
107 text-align: left;
96108}
97109
98110#history {