diff options
-rw-r--r-- | test.gmi | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test.gmi b/test.gmi new file mode 100644 index 0000000..8d8e178 --- /dev/null +++ b/test.gmi | |||
@@ -0,0 +1,27 @@ | |||
1 | # a test document of some kind | ||
2 | |||
3 | here is a test document. | ||
4 | it has paragraphs | ||
5 | => example.com with links! | ||
6 | and other things. | ||
7 | |||
8 | ## a code example | ||
9 | ``` | ||
10 | for (a=1;a<=4;a++) { | ||
11 | printf("%d\n", a); | ||
12 | } | ||
13 | ``` | ||
14 | |||
15 | ### other examples | ||
16 | |||
17 | > a blockquote is a quote | ||
18 | > that is blocky. | ||
19 | |||
20 | * list 1 | ||
21 | * list 2 | ||
22 | * list 3 | ||
23 | => example.com link list 1 | ||
24 | => example.com link list 2 | ||
25 | => example.com link list 3 | ||
26 | |||
27 | ok | ||