File: test.org

package info (click to toggle)
golang-github-chaseadamsio-goorgeous 2.0.0%2Bgit20171126.dcf1ef8-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 208 kB
  • sloc: makefile: 3
file content (103 lines) | stat: -rw-r--r-- 2,876 bytes parent folder | download
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
#+TITLE: Test File For chaseadamsio/goorgeous
#+AUTHOR: Chase Adams
#+DESCRIPTION: Just another golang parser for org content!

Have you ever wanted to parse org content with Go? Well now you can!

It doesn't matter if you want to use /an emphasis/, *bold*, =verbatim=, ~code~ or +strikethrough+, they're all supported!

If you're curious what else it supports, you're in luck, you can find it all [[https://github.com/chaseadamsio/goorgeous][here (did I mention plain links work?)]]!

[[file:../gopher.gif][a uni-gopher]]

[[file:../gopher.gif]]

* Headline 1
** Headline 2
*** Headline 3
**** Headline 4
***** Headline 5
****** Headline 6

* TODO Headline 1
* DONE Headline 1
** TODO Headline 2
** DONE Headline 2
*** TODO Headline 3
*** DONE Headline 3
**** TODO Headline 4
**** DONE Headline 4
***** TODO Headline 5
***** DONE Headline 5
****** TODO Headline 6
****** DONE Headline 6

* [A] Headline 1
** [A] Headline 2
*** [A] Headline 3
**** [A] Headline 4
***** [A] Headline 5
****** [A] Headline 6

* TODO [A] Headline 1
** TODO [A] Headline 2
*** TODO [A] Headline 3
**** TODO [A] Headline 4
***** TODO [A] Headline 5
****** TODO [A] Headline 6

* Headline 1 :tags:are:supported:
** Headline 2						 :tags:are:supported:
*** Headline 3 						 :tags:are:supported:
**** Headline 4						 :tags:are:supported:
***** Headline 5 					 :tags:are:supported:
****** Headline 6 					 :tags:are:supported:

* TODO [A] Headline 1 :tags:are:supported:
** TODO [A] Headline 2 					 :tags:are:supported:
*** TODO [A]  Headline 3 				 :tags:are:supported:
**** TODO [A]  Headline 4 				 :tags:are:supported:
***** TODO [A]  Headline 5				 :tags:are:supported:
****** TODO [A]  Headline 6				 :tags:are:supported:

- unordered 
- lists
- are
- supported.

1. ordered 
2. lists
3. are
4. supported.

| tables     | with     | headers    | are      | supported       |
|------------+----------+------------+----------+-----------------|
| cell 1:1   | cell 1:2 | cell 1:3   | cell 1:4 | cell 1:5        |
| /emphasis/ | *bold*   | =verbatim= | ~code~   | +strikethrough+ |

| tables     | without  | headers    | are      | supported       |
| cell 1:1   | cell 1:2 | cell 1:3   | cell 1:4 | cell 1:5        |
| /emphasis/ | *bold*   | =verbatim= | ~code~   | +strikethrough+ |

#+BEGIN_SRC sh
  echo "source blocks are supported..."
  echo "and language is extracted from the language defined in the source block."
#+END_SRC

#+BEGIN_EXAMPLE sh
  echo "source blocks are supported..."
  echo "and language is extracted from the language defined in the source block."
#+END_EXAMPLE

#+BEGIN_QUOTE
“Org mode is for keeping notes, maintaining TODO lists, planning projects, and authoring documents with a fast and effective plain-text system.”
- [[http://orgmode.org]]
#+END_QUOTE

#+BEGIN_CENTER
This is a centered block.
#+END_CENTER

-----

^ that's support for horizontal rules!