Home Explore Blog CI



tera

README.md
4f9d63e7792079aecf344bc7958c8373ca437bee279dabc90000000300000517
# Tera

[
](https://github.com/Keats/tera/actions)
[
](https://crates.io/crates/tera)
[
](https://docs.rs/crate/tera/)
[
](https://gitter.im/Tera-templates/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

Tera is a template engine inspired by [Jinja2](http://jinja.pocoo.org/) and the [Django template language](https://docs.djangoproject.com/en/3.1/topics/templates/).

```jinja2
<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users %}
  <li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
```

It does not aim to be 100% compatible with them but has many of the Jinja2/Django filters and testers.

## Documentation
API documentation is available on [docs.rs](https://docs.rs/crate/tera/).

Tera documentation is available on its [site](http://keats.github.io/tera/docs).

## SemVer
This project follows SemVer only for the public API, public API here meaning functions appearing in the docs.
Some features, like accessing the AST, are also available but breaking changes in them can happen in any versions.

Chunks
1531e01c (1st chunk of `README.md`)
488f12ee (2nd chunk of `README.md`)
1548c29f (3rd chunk of `README.md`)
94776ac7 (4th chunk of `README.md`)