//! Parser module for mathlex.
//!
//! This module provides tokenization and parsing capabilities for both
//! plain text and LaTeX mathematical expressions.
//!
//! # Modules
//!
//! - [`tokenizer`]: Plain text tokenizer that converts input into tokens
//! - [`latex_tokenizer`]: LaTeX tokenizer that converts LaTeX input into tokens
//! - [`text`]: Plain text expression parser
//! - [`latex`]: LaTeX expression parser
// Re-export key types
pub use ;
pub use ;
pub use ;
pub use tokenize;
/// A spanned token - combines a token with its source location.
///
/// This type alias is used throughout the parser to track where tokens
/// originated in the source text for error reporting.
pub type Spanned<T> = ;