orgize 0.9.0

A Rust library for parsing orgmode files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use orgize::Org;

#[test]
fn can_handle_empty_emphasis() {
    let cases = &[
        "* / // a",
        "\"* / // a\"",
        "* * ** a",
        "* 2020\n** December\n*** Experiment\nType A is marked with * and type B is marked with **.\n",
        "* 2020\n:DRAWER:\n* ** a\n:END:",
        "* * ** :a:",
        "* * ** "
    ];

    for case in cases {
        let _ = Org::parse(case);
    }
}