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
use super::{LangParserError, Region, Span, LE};
use nom::Err;

mod parsers;
pub use parsers::*;

/// Alias to the type of error to use with vimwiki parsing using nom
pub type VimwikiNomError = LangParserError;

/// Alias to an IResult using VimwikiNomError
pub type VimwikiIResult<O> = Result<(Span, O), Err<VimwikiNomError>>;