usesuper::{LangParserError, Region, Span,LE};usenom::Err;modparsers;pubuseparsers::*;/// Alias to the type of error to use with vimwiki parsing using nom
pubtypeVimwikiNomError= LangParserError;/// Alias to an IResult using VimwikiNomError
pubtypeVimwikiIResult<O>=Result<(Span, O), Err<VimwikiNomError>>;