Skip to main content

subcog/rendering/
mod.rs

1//! Template rendering engine.
2//!
3//! Provides rendering capabilities for context templates with variable substitution,
4//! iteration support, and output format conversion.
5
6mod template_renderer;
7
8pub use template_renderer::{RenderContext, RenderValue, TemplateRenderer};