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
// Import to make more easily accessible to submodules
use super::{
    elements,
    utils::{Region, Span, LE},
};

mod errors;
pub use errors::LangParserError;

mod utils;

#[cfg(feature = "timekeeper")]
pub use utils::print_timekeeper_report;

pub mod vimwiki;