File: Markdown%2BLHS

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 (59 lines) | stat: -rw-r--r-- 931 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
51
52
53
54
55
56
57
58
59
~~~~~~~~
# Section heading

## Subsection

Formatting:  *italics*,
**bold**, super^script^,
sub~script~, ~~strikeout~~.
A line break  
can be forced with two spaces
at the end of the line.

 > Indented quotation:
 > note: the '>' must not
 > be flush with the margin
 > or what follows will be
 > treated as Haskell code

> -- bird-tracks Haskell:
> fibs = 0 : 1 :
>   zipWith (+) fibs (tail fibs)

Links:
[external](http://google.com),
[Wiki Link](),
![image](/img/logo.png),
[to heading](#section-heading).

Indented code block:

    #include <stdbool.h>

Or use a delimited code block:

~~~ { .haskell }
let a = 1:a in head a
~~~

- bulleted
- list

* * * * *

1.  ordered
2.  list
    a. sublist (indent 4 spaces)
    b. another
3.  item three

term
:   definition
orange
:   orange fruit

~~~~~~~~

For more: [markdown syntax](http://daringfireball.net/projects/markdown),
[pandoc extensions](http://pandoc.org/README.html).