krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

main: fixtures/elements.org · raw

 1#+TITLE: Element Sampler
 2#+FILETAGS: :sample:
 3
 4* Code and tables
 5
 6#+BEGIN_SRC rust
 7fn main() {
 8    println!("hello");
 9}
10#+END_SRC
11
12| Name  | Score |
13|-------+-------|
14| alpha |    10 |
15| beta  |    20 |
16
17* Links and footnotes
18
19An external link: [[https://example.com][Example]] and an id link [[id:abc-123]].
20
21Text with a footnote reference.[fn:1]
22
23[fn:1] The footnote definition.
24
25* Blocks
26
27#+BEGIN_QUOTE
28A quoted paragraph.
29#+END_QUOTE
30
31-----