// (TODO describe Hornbeam itself)
//! # What this top-level crate does
//!
//! This crate provides an abstraction layer over both the interpreter and the compile-time template
//! compiler, allowing to switch between them at will in a project
//! (or more likely: use the hot-reloadable interpreter in development and the high-performance
//! compiler for production).
//!
//! Currently this crate only supports interpreted mode.
/// Exports: make_template_manager, initialise_template_manager, render_template_string.
pub use ;
pub use ReflectedForm;