A language-neutral conformance corpus for org-mode to HTML renderers.

conformance html org-mode testing

cases/core.org

21 lines · 367 bytes

 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