Commit 4e3cff1e75ebf19cac4ebe602cc76e5027ecf6e1
- Diff rendering mode:
- inline
- side by side
TODO
(2 / 8)
|   | |||
| 1 | 1 | Backend | |
| 2 | 2 | ------- | |
| 3 | - Add diffs to history | ||
| 4 | - Auto-link plain-text links | ||
| 5 | 3 | - Wikify links | |
| 4 | - Auto-link plain-text links | ||
| 6 | 5 | - Auto-insert newline after h? | |
| 7 | 6 | - Add section edit links ? | |
| 8 | |||
| 9 | Default 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 | ||
| 14 | 8 | ||
| 15 | 9 | ExtJS theme | |
| 16 | 10 | ----------- |
themes/default/edit.php
(29 / 0)
|   | |||
| 23 | 23 | </form> | |
| 24 | 24 | </div> | |
| 25 | 25 | ||
| 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><b>Bold</b></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> → | ||
| 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> → H<sub>2</sub>O, A<sup>2</sup></li> | ||
| 46 | <li><code>Abbr(Abbreviation)</code> → <acronym tytle="Abbreviation">Abbr</acronym></li> | ||
| 47 | <li><code>|Cell 1|Cell 2|</code>: Tables</li> | ||
| 48 | <li><code>%{color:red}Red% text</code> → <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 | |||
| 26 | 55 | </body> | |
| 27 | 56 | </html> |
themes/default/style.css
(18 / 1)
|   | |||
| 50 | 50 | margin: 0; | |
| 51 | 51 | } | |
| 52 | 52 | ||
| 53 | #content { | ||
| 54 | padding-top: 10pt; | ||
| 55 | padding-bottom: 10pt; | ||
| 56 | } | ||
| 57 | |||
| 53 | 58 | #content h1 { | |
| 54 | 59 | background-color: #7799BB; | |
| 55 | 60 | font-color: white; | |
| … | … | ||
| 85 | 85 | font-family: monospace; | |
| 86 | 86 | } | |
| 87 | 87 | ||
| 88 | #content table { | ||
| 89 | border-collapse: collapse; | ||
| 90 | } | ||
| 91 | |||
| 92 | #content td { | ||
| 93 | border: thin dashed gray; | ||
| 94 | } | ||
| 95 | |||
| 96 | |||
| 88 | 97 | #footer { | |
| 89 | 98 | text-align: center; | |
| 90 | 99 | font-size: 0.7em; | |
| 91 | 100 | border-top: thin solid #999; | |
| 92 | text-align: center; | ||
| 93 | 101 | padding: .5em; | |
| 94 | 102 | background-color: #ddd; | |
| 95 | 103 | margin: 0em; | |
| 104 | } | ||
| 105 | |||
| 106 | #footer p.syntax { | ||
| 107 | text-align: left; | ||
| 96 | 108 | } | |
| 97 | 109 | ||
| 98 | 110 | #history { |

