lex-babel 0.8.2

Format conversion library for the lex format
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Intermediate Representation (IR) for lex documents.
//!
//! This module defines a format-agnostic representation of a lex document,
//! designed to facilitate conversion to various output formats like HTML,
//! Markdown, etc.

pub mod events;
pub mod from_lex;
pub mod nodes;
pub mod to_events;
pub mod to_lex;