cooklang-reports 0.3.0

A Rust library for generating reports from Cooklang recipes using Jinja2-style templates
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod numeric;
pub mod price;
pub mod string;

pub use numeric::numeric_filter;
pub use price::format_price_filter;
pub use string::{
    camelize_filter, dasherize_filter, humanize_filter, titleize_filter, underscore_filter,
    upcase_first_filter,
};