1 2 3 4 5 6 7 8
use crate::dom::TeaCatDom; pub mod html; /// Renders an [`ExpandedAst`] into another (typically human-readable) form. pub trait Renderer<Out> { fn render(ast: TeaCatDom) -> Out; }