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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Inline-level grammar modules
//
// This module contains CommonMark inline element parsers plus a small set of
// supported extensions.
// Each parser extracts a specific inline construct and returns nom IResult.
//
// Phase 4: Inline grammar module extraction - IN PROGRESS
// Re-export the Span type for use by all inline modules
pub use LocatedSpan;
/// Inline grammar span type preserving location information.
pub type Span<'a> = ;
// Individual inline grammar modules
// Re-export all parser functions for convenience
pub use autolink;
pub use backslash_escape;
pub use code_span;
pub use emphasis;
pub use image;
pub use inline_html;
pub use ;
pub use link;
pub use strong;
pub use strong_emphasis;
pub use strikethrough;
pub use dash_strikethrough;
pub use mark;
pub use subscript;
pub use subscript_arrow;
pub use superscript;
pub use display_math;
pub use inline_math;