1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/// Vimwiki-specific parsers
/// Export the span used for input
pub use Span;
/// Alias to the type of error to use with parsing using nom
pub use LangParserError as Error;
/// Alias to an Result using our custom error and span
pub type IResult<'a, O> = ;
/// Represents some data captured with the input used to create it