#templating #string #cli

bin+lib nanotemplate

A minimal templating engine that renders a string from the template, replacing all instances of {placeholder} with given values

4 releases (2 breaking)

0.3.0 Sep 22, 2022
0.2.1 Jun 23, 2021
0.2.0 May 5, 2021
0.1.0 May 4, 2021

#158 in Template engine

Download history 268/week @ 2023-12-12 101/week @ 2023-12-19 64/week @ 2023-12-26 282/week @ 2024-01-02 380/week @ 2024-01-09 388/week @ 2024-01-16 499/week @ 2024-01-23 457/week @ 2024-01-30 587/week @ 2024-02-06 678/week @ 2024-02-13 833/week @ 2024-02-20 741/week @ 2024-02-27 829/week @ 2024-03-05 1744/week @ 2024-03-12 330/week @ 2024-03-19 1323/week @ 2024-03-26

4,304 downloads per month
Used in 2 crates

MIT license

17KB
298 lines

Latest Version Documentation License

A minimal templating engine that renders a string from the template, replacing all instances of {placeholder} with given values.

The engine is strict:

  • all placeholders must have values provided (use template_default to use default value for placeholders),
  • all provided values must have matching placeholder (when using template_strict),
  • a single placeholder can be used multiple times and will be expanded in all places.

Values are provided as an iterable object that provides placeholder name and value pairs.

use nanotemplate::template;

assert_eq!(
	template("Hello, my name is {name}!", &[("name", "nanotemplate")]).unwrap(),
	"Hello, my name is nanotemplate!".to_owned());

Also comes with simple CLI utility:

echo "Hello my name is {name}" | nanotemplate name=nanotemplate

No runtime deps