File: HTML

package info (click to toggle)
gitit 0.15.1.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,060 kB
  • sloc: haskell: 4,757; javascript: 710; xml: 245; sh: 65; makefile: 16
file content (50 lines) | stat: -rw-r--r-- 776 bytes parent folder | download | duplicates (4)
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
~~~~~~~~
<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 &lt;stdbool.h&gt;
</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://pandoc.org/README.html).