lex-core 0.8.2

Parser library for the lex format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Inline AST nodes shared across formatting, literal, and reference elements.
//!
//! These nodes are intentionally lightweight so the inline parser can be used
//! from unit tests before it is integrated into the higher level AST builders.

mod base;
mod references;

pub use base::{InlineContent, InlineNode};
pub use references::{
    CitationData, CitationLocator, PageFormat, PageRange, ReferenceInline, ReferenceType,
};