Find orphan pages.
[cocanwiki.git] / html / _static / markup.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3 <head>
4 <title>Writing in Wiki</title>
5 <meta name="description" content="Description of the Wiki markup language supported by this Wiki" />
6 <meta name="author" content="http://www.merjis.com/" />
7 <link rel="stylesheet" href="/_css/standard.css" type="text/css" title="Standard"/>
8 <link rel="stylesheet" href="/_css/markup.css" type="text/css" title="Standard"/>
9 </head><body>
10
11 <h1>Writing in Wiki</h1>
12
13 <table id="markup">
14 <tr><th colspan="3">Links</th></tr>
15
16 <tr>
17 <td><code>See our [[Scary monsters]]</code></td>
18 <td>See our <a href="/scary_monsters" title="Scary monsters" class="internal">Scary monsters</a></td>
19 <td rowspan="4" class="notes">
20 You can also link to email addresses using <code>[[mailto:address]]</code>.
21 </td>
22 </tr>
23
24 <tr>
25 <td><code>See our [[Scary monsters|big cats]]</code></td>
26 <td>See our <a href="/scary_monsters" title="Scary monsters" class="internal">big cats</a></td>
27 </tr>
28
29 <tr>
30 <td><code>[[http://news.bbc.co.uk/]]</code></td>
31 <td><a href="http://news.bbc.co.uk/" title="http://news.bbc.co.uk/" class="external">http://news.bbc.co.uk/</a></td>
32 </tr>
33
34 <tr>
35 <td><code>[[http://news.bbc.co.uk/|BBC News]]</code></td>
36 <td><a href="http://news.bbc.co.uk/" title="http://news.bbc.co.uk/" class="external">BBC News</a></td>
37 </tr>
38
39 <tr><th colspan="3">Bullets, subheadings, preformatted</th></tr>
40
41 <tr>
42 <td>
43 <pre>
44 Minutes of last week:
45 * Introductions
46 * Cup of tea
47 </pre>
48 </td>
49 <td>
50 Minutes of last week:
51 <ul><li> Introductions</li>
52 <li> Cup of tea</li>
53 </ul>
54 </td>
55 <td class="notes">
56 Use <code>#</code> for numbered bullets.
57 </td>
58 </tr>
59
60 <tr>
61 <td>
62 <pre>
63 = Subheading
64 == Subsubheading
65 </pre>
66 </td>
67 <td>
68 <h3>Subheading</h3>
69 <h4>Subsubheading</h4>
70 </td>
71 <td></td>
72 </tr>
73
74 <tr>
75 <td>
76 <pre>
77  A space before each line
78  lets you format the
79  text     however    you
80          want.
81 </pre>
82 </td>
83 <td>
84 <pre>
85 A space before each line
86 lets you format the
87 text     however    you
88         want.
89 </pre>
90 </td>
91 <td></td>
92 </tr>
93
94 <tr><th colspan="3">Text formatting</th></tr>
95
96 <tr>
97 <td><code>Did you <strong>&lt;em&gt;</strong>really<strong>&lt;/em&gt;</strong> mean you drink
98 only H<strong>&lt;sub&gt;</strong>2<strong>&lt;/sub&gt;</strong>O?</code></td>
99 <td>Did you <em>really</em> mean you drink
100 only H<sub>2</sub>O?</td>
101 <td class="notes">
102 <code>&lt;strong&gt; &lt;em&gt; &lt;code&gt; &lt;sup&gt; &lt;sub&gt;</code>
103 </td>
104 </tr>
105
106 <tr>
107 <td><code><strong>&lt;nowiki&gt;</strong>Turns &lt;em&gt;off all wiki<strong>&lt;/nowiki&gt;</strong></td>
108 <td>Turns &lt;em&gt;off all wiki</td>
109 <td></td>
110 </tr>
111
112 </table>
113
114
115 <ul id="topmenu" class="menu">
116 <li> <a href="/">Home&nbsp;page</a> | </li>
117 <li> <a href="/_sitemap">Sitemap</a> | </li>
118 <li> <a href="/_recent">Recent&nbsp;changes</a> </li>
119 </ul>
120
121 <ul id="bottommenu" class="menu">
122 <li> <a href="/">Home&nbsp;page</a> | </li>
123 <li> <a href="/_sitemap">Sitemap</a> | </li>
124 <li> <a href="/_recent">Recent&nbsp;changes</a> </li>
125 </ul>
126
127 <hr/>
128
129 <ul id="footer" class="menu">
130 <li> <a href="/copyright">Copyright &copy; 2004</a> </li>
131 </ul>
132
133 </body>
134 </html>