1 stable release

1.0.0 Aug 24, 2020

#13 in #camel-case

Download history 28/week @ 2024-07-20 28/week @ 2024-07-27 20/week @ 2024-08-03 30/week @ 2024-08-10 18/week @ 2024-08-17 17/week @ 2024-08-24 32/week @ 2024-08-31 41/week @ 2024-09-07 32/week @ 2024-09-14 47/week @ 2024-09-21 51/week @ 2024-09-28 11/week @ 2024-10-05 20/week @ 2024-10-12 23/week @ 2024-10-19 30/week @ 2024-10-26 20/week @ 2024-11-02

93 downloads per month
Used in framy

MIT/Apache

9KB

tera-text-filters

crates.io crates.io Documentation

Text transformation filters for the Tera template engine.

Usage

use tera::Tera;
use tera_text_filters::camel_case;

let mut tera = Tera::default();
tera.register_filter("camel_case", camel_case);

Alternatively, you can register all filters at once:

use tera::Tera;
use tera_text_filters::register_all;

let mut tera = Tera::default();
register_all(&mut tera);

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~7–16MB
~210K SLoC