vimwiki 0.1.0-alpha.2

Library that provides support to parse, generate, and manipulate vimwiki langauge.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod lang;

// Export the language elements without dumping them into the top leve
pub use lang::elements;

// Export our top-level parser structs
pub use lang::{LangParserError, RawStr};

// Dump our utilities (LocatedElement, Region, Point, ...) into top level
pub use lang::utils::*;

// Re-export the vendor libraries so we're able to reconstruct their
// structs from macros
pub mod vendor {
    pub use chrono;
    pub use uriparse;
}