Expand description
§TypeDown Interpreter Libraries
This library re-exports the core components of the TypeDown interpreter system:
core
: Core types, traits, AST definitions and utilities for the TypeDown languageeval
: Evaluation engine and rendering for TypeDown documentssyntax
: Syntax parsing and lexical analysis
These modules provide a complete implementation of the TypeDown language interpreter, allowing embedding, extension, and use of TypeDown in Rust applications.
Re-exports§
pub use tyd_core as core;
pub use tyd_eval as eval;
pub use tyd_syntax as syntax;