cooklang-reports 0.5.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
11
12
13
14
pub mod aisle;
pub mod datastore;
pub mod ingredient_list;
pub mod numeric;
pub mod pantry;

pub use aisle::aisled;
pub use datastore::get_from_datastore;
pub use ingredient_list::get_ingredient_list;
pub use numeric::{
    number_to_currency, number_to_human, number_to_human_size, number_to_percentage,
    number_with_delimiter, number_with_precision,
};
pub use pantry::{excluding_pantry, from_pantry};