/usr/share/gitit/data/markupHelp/HTML 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 | ~~~~~~~~
<h1>Section heading</h1>
<h2>Subsection</h2>
<p>Formatting:
<i>italics</i>,
<b>bold</b>,
super<sup>script</sup>,
sub<sub>script</sub>,
line<br/>break.
</p>
<blockquote>
<p>Indented quotation</p>
</blockquote>
<p>Links:
<a href="http://foo.bar">
external</a>,
<a href="">Wiki Link</a>,
<img src="/img/banner.png"
alt="image"/>,
</p>
<p>Indented code block:</p>
<pre><code>
#include <stdbool.h>
</code></pre>
<ul>
<li>bulleted</li>
<li>list</li>
</ul>
<hr/>
<ol>
<li>ordered</li>
<li>list
<ol>
<li>sublist</li>
<li>another</li>
</ol>
</li>
<li>item three</li>
</ol>
<dl>
<dt>term</dt>
<dd>definition</dd>
<dt>orange</dt>
<dd>orange fruit</dd>
</dl>
~~~~~~~~
For more: [xhtml tutorial](http://www.w3schools.com/Xhtml/),
[pandoc](http://johnmacfarlane.net/pandoc/README.html).
|