krz/orgo

Lightning fast org-mode static site generator.

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

v0.20.0: fixtures/core.org · raw

 1#+TITLE: Core Constructs
 2
 3Intro paragraph with a bare URL https://example.com and some ~inline code~.
 4
 5* Ordered and checked
 6
 71. first item
 82. second item with /emphasis/
 9
10- [ ] todo item
11- [X] done item
12
13* Links and code
14
15An external [[https://example.org][site]] and a bare [[https://bare.example]].
16
17#+BEGIN_SRC rust
18fn main() {
19    println!("hello");
20}
21#+END_SRC