/usr/share/gitit/data/markup.DocBook is in libghc-gitit-data 0.12.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | <sect1 id="markdown">
<title>Markdown</title>
<para>
This wiki's pages are written in
<ulink url="http://johnmacfarlane.net/pandoc">pandoc</ulink>'s
extended form of
<ulink url="http://daringfireball.net/projects/markdown">markdown</ulink>.
If you're not familiar with markdown, you should start by looking at
the
<ulink url="http://daringfireball.net/projects/markdown/basics">markdown
"basics" page</ulink> and the
<ulink url="http://daringfireball.net/projects/markdown/syntax">markdown
syntax description</ulink>. Consult the
<ulink url="http://johnmacfarlane.net/pandoc/README.html">pandoc
User's Guide</ulink> for information about pandoc's syntax for
footnotes, tables, description lists, and other elements not present
in standard markdown.
</para>
<para>
Markdown is pretty intuitive, since it is based on email
conventions. Here are some examples to get you started:
</para>
<table>
<tr>
<td>
<literal>*emphasized text*</literal>
</td>
<td>
<emphasis>emphasized text</emphasis>
</td>
</tr>
<tr>
<td>
<literal>**strong emphasis**</literal>
</td>
<td>
<emphasis role="strong">strong emphasis</emphasis>
</td>
</tr>
<tr>
<td>
<literal>`literal text`</literal>
</td>
<td>
<literal>literal text</literal>
</td>
</tr>
<tr>
<td>
<literal>\*escaped special characters\*</literal>
</td>
<td>
*escaped special characters*
</td>
</tr>
<tr>
<td>
<literal>[external link](http://google.com)</literal>
</td>
<td>
<ulink url="http://google.com">external link</ulink>
</td>
</tr>
<tr>
<td>
<literal>![folder](/img/icons/folder.png)</literal>
</td>
<td>
<inlinemediaobject>
<imageobject>
<imagedata fileref="/img/icons/folder.png" />
</imageobject>
</inlinemediaobject>
</td>
</tr>
<tr>
<td>
Wikilink: <literal>[Front Page]()</literal>
</td>
<td>
Wikilink: <ulink url="">Front Page</ulink>
</td>
</tr>
<tr>
<td>
<literal>H~2~O</literal>
</td>
<td>
H<subscript>2</subscript>O
</td>
</tr>
<tr>
<td>
<literal>10^100^</literal>
</td>
<td>
10<superscript>100</superscript>
</td>
</tr>
<tr>
<td>
<literal>~~strikeout~~</literal>
</td>
<td>
<emphasis role="strikethrough">strikeout</emphasis>
</td>
</tr>
<tr>
<td>
<literal>$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$</literal>
</td>
<td>
$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$<footnote>
<para>
If this looks like code, it's because jsMath is not installed on
your system. Contact your administrator to request it.
</para>
</footnote>
</td>
</tr>
<tr>
<td>
<literal>A simple footnote.^[Or is it so simple?]</literal>
</td>
<td>
A simple footnote.<footnote>
<para>
Or is it so simple?
</para>
</footnote>
</td>
</tr>
<tr>
<td>
<pre>
> an indented paragraph,
> usually used for quotations
</pre>
</td>
<td>
<blockquote>
<para>
an indented paragraph, usually used for quotations
</para>
</blockquote>
</td>
<tr>
<td>
<pre>
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
</pre>
</td>
<td>
<programlisting>
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
</programlisting>
</td>
</tr>
<tr>
<td>
<pre>
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
</pre>
</td>
<td>
<itemizedlist spacing="compact">
<listitem>
<para>
a bulleted list
</para>
</listitem>
<listitem>
<para>
second item
</para>
<itemizedlist spacing="compact">
<listitem>
<para>
sublist
</para>
</listitem>
<listitem>
<para>
and more
</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
back to main list
</para>
<orderedlist numeration="arabic" spacing="compact">
<listitem>
<para>
this item has an ordered
</para>
</listitem>
<listitem>
<para>
sublist
</para>
<orderedlist numeration="loweralpha" spacing="compact">
<listitem>
<para>
you can also use letters
</para>
</listitem>
<listitem>
<para>
another item
</para>
</listitem>
</orderedlist>
</listitem>
</orderedlist>
</listitem>
</itemizedlist>
</td>
</tr>
<tr>
<td>
<pre>
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
</pre>
</td>
<td>
<table>
<title>
Our fruit inventory
</title>
<tgroup cols="2">
<colspec align="left" />
<colspec align="right" />
<thead>
<row>
<entry>
Fruit
</entry>
<entry>
Quantity
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
apples
</entry>
<entry>
30,200
</entry>
</row>
<row>
<entry>
oranges
</entry>
<entry>
1,998
</entry>
</row>
<row>
<entry>
pears
</entry>
<entry>
42
</entry>
</row>
</tbody>
</tgroup>
</table>
</td>
</tr>
</table>
<para>
For headings, prefix a line with one or more <literal>#</literal>
signs: one for a major heading, two for a subheading, three for a
subsubheading. Be sure to leave space before and after the heading.
</para>
<programlisting>
# Markdown
Text...
## Some examples...
Text...
</programlisting>
<sect2 id="wiki-links">
<title>Wiki links</title>
<para>
Links to other wiki pages are formed this way:
<literal>[Page Name]()</literal>. (Gitit converts markdown links
with empty targets into wikilinks.)
</para>
<para>
To link to a wiki page using something else as the link text:
<literal>[something else](Page Name)</literal>.
</para>
<para>
Note that page names may contain spaces and some special
characters. They need not be CamelCase. CamelCase words are
<emphasis>not</emphasis> automatically converted to wiki links.
</para>
<para>
Wiki pages may be organized into directories. So, if you have
several pages on wine, you may wish to organize them like so:
</para>
<programlisting>
Wine/Pinot Noir
Wine/Burgundy
Wine/Cabernet Sauvignon
</programlisting>
<para>
Note that a wiki link <literal>[Burgundy]()</literal> that occurs
inside the <literal>Wine</literal> directory will link to
<literal>Wine/Burgundy</literal>, and not to
<literal>Burgundy</literal>. To link to a top-level page called
<literal>Burgundy</literal>, you'd have to use
<literal>[Burgundy](/Burgundy)</literal>.
</para>
<para>
To link to a directory listing for a subdirectory, use a trailing
slash: <literal>[Wine/]()</literal> will link to a listing of the
<literal>Wine</literal> subdirectory.
</para>
</sect2>
</sect1>
|