tinytemplate 1.0.1

Simple, lightweight template engine
Documentation

TinyTemplate is a small, minimalistic text templating system with limited dependencies.

Table of Contents

Goals

The primary design goals are:

  • Small: TinyTemplate deliberately does not support many features of more powerful template engines.
  • Simple: TinyTemplate presents a minimal but well-documented user-facing API.
  • Lightweight: TinyTemplate has minimal required dependencies.

Non-goals include:

  • Extensibility: TinyTemplate supports custom value formatters, but that is all.
  • Performance: TinyTemplate provides decent performance, but other template engines are faster.

Why TinyTemplate?

I created TinyTemplate after noticing that none of the existing template libraries really suited my needs for Criterion.rs. Some had large dependency trees to support features that I didn't use. Some required adding a build script to convert templates into code at runtime, in search of extreme performance that I didn't need. Some had elaborate macro-based DSL's to generate HTML, where I just wanted plain text with some markup. Some expect the templates to be provided in a directory of text files, but I wanted the template to be included in the binary. I just wanted something small and minimal with good documentation but there was nothing like that out there so I wrote my own.

TinyTemplate is well-suited to generating HTML reports and similar text files. It could be used for generating HTML or other text in a web-server, but for more-complex use cases another template engine may be a better fit.

Quickstart

First, add TinyTemplate and serde-derive to your Cargo.toml file:

[dependencies]
tinytemplate = "1.0"
serde_derive = "1.0"

Then add this code to "src.rs":

#[macro_use]
extern crate serde_derive;
extern crate tinytemplate;

use tinytemplate::TinyTemplate;
use std::error::Error;

#[derive(Serialize)]
struct Context {
    name: String,
}

static TEMPLATE : &'static str = "Hello {name}!";

pub fn main() -> Result<(), Box<dyn Error>> {
    let mut tt = TinyTemplate::new();
    tt.add_template("hello", TEMPLATE)?;

    let context = Context {
        name: "World".to_string(),
    };

    let rendered = tt.render("hello", &context)?;
    println!("{}", rendered);

    Ok(())
}

This should print "Hello World!" to stdout.

Compatibility Policy

TinyTemplate supports the last three stable minor releases of Rust. At time of writing, this means Rust 1.29 or later. Older versions may work, but are not tested or guaranteed.

Currently, the oldest version of Rust believed to work is 1.26. Future versions of TinyTemplate may break support for such old versions, and this will not be considered a breaking change. If you require TinyTemplate to work on old versions of Rust, you will need to stick to a specific patch version of TinyTemplate.

Contributing

Thanks for your interest! Contributions are welcome.

Issues, feature requests, questions and bug reports should be reported via the issue tracker above. In particular, becuase TinyTemplate aims to be well-documented, please report anything you find confusing or incorrect in the documentation.

Code or documentation improvements in the form of pull requests are also welcome. Please file or comment on an issue to allow for discussion before doing a lot of work, though.

For more details, see the CONTRIBUTING.md file.

Maintenance

TinyTemplate was created and is currently maintained by Brook Heisler (@bheisler).

License

TinyTemplate is dual-licensed under the Apache 2.0 license and the MIT license.