rskit-util 0.2.0-alpha.3

Pure utility functions for rskit
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Lightweight template engine featuring brace-delimited placeholders.

mod dynamic;
mod error;
mod parser;
mod renderer;
mod typed;

pub use dynamic::DynamicTemplate;
pub use error::TemplateError;
pub use typed::{Placeholder, Template, TemplatePart};