lex-core 0.8.2

Parser library for the lex format
Documentation
//! AST Node Builders
//!
//! This module contains builder functions for converting matched grammar patterns
//! into ParseNode AST structures. Each element type has its own dedicated builder module.

mod annotation;
mod blank_line;
mod definition;
mod helpers;
mod list;
mod paragraph;
mod session;
mod table;
mod verbatim;

pub(in crate::lex::parsing::parser::builder) use annotation::{
    build_annotation_block, build_annotation_single,
};
pub(in crate::lex::parsing::parser::builder) use blank_line::build_blank_line_group;
pub(in crate::lex::parsing::parser::builder) use definition::build_definition;
pub(in crate::lex::parsing::parser::builder) use list::build_list;
pub(in crate::lex::parsing::parser::builder) use paragraph::build_paragraph;
pub(in crate::lex::parsing::parser::builder) use session::build_session;
pub(in crate::lex::parsing::parser::builder) use table::build_table;
pub(in crate::lex::parsing::parser) use table::container_starts_with_pipe_row;
pub(in crate::lex::parsing::parser::builder) use verbatim::build_verbatim_block;