teacat_lib 0.5.2

Tools for working with TeaCat files
Documentation
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;
}