Popularity
8.5
Stable
Activity
6.5
-
3,210
23
269

Programming language: Rust
License: MIT License
Tags: HTML     Template engine     template     jinja     django     markup     Jinja2    
Latest version: v1.17.1

tera alternatives and similar packages

Based on the "HTML" category.
Alternatively, view tera alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of tera or a related project?

Add another 'HTML' Package

README

Tera

Actions Status Crates.io Docs Gitter

Tera is a template engine inspired by Jinja2 and the Django template language.

<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.

Tera documentation is available on its site.

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.