All Projects → djc → Askama

djc / Askama

Licence: other
Type-safe, compiled Jinja-like templates for Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Askama

Prinder
Free Pull Request reminder for Github. Has configurations to post reminders to Slack and email along with jinja templating
Stars: ✭ 21 (-98.33%)
Mutual labels:  jinja2, templating
gpp
General PreProcessor
Stars: ✭ 25 (-98.01%)
Mutual labels:  jinja2, templating
Tera
A template engine for Rust based on Jinja2/Django
Stars: ✭ 1,873 (+49.24%)
Mutual labels:  rust-library, jinja2
Dotdrop
Save your dotfiles once, deploy them everywhere
Stars: ✭ 813 (-35.22%)
Mutual labels:  templating, jinja2
Awesome Twig
A curated list of amazingly awesome Twig extensions, snippets and tutorials
Stars: ✭ 63 (-94.98%)
Mutual labels:  templating
Cvpr paper search tool
Automatic paper clustering and search tool by fastext from Facebook Research
Stars: ✭ 43 (-96.57%)
Mutual labels:  jinja2
Jinja
A very fast and expressive template engine.
Stars: ✭ 8,170 (+551%)
Mutual labels:  jinja2
Cv Maker
simple elegant markdown based resumes
Stars: ✭ 1,003 (-20.08%)
Mutual labels:  templating
Bitmatch
A Rust crate that allows you to match, bind, and pack the individual bits of integers.
Stars: ✭ 82 (-93.47%)
Mutual labels:  rust-library
Pynms
A vendor-agnostic NMS for carrier-grade network simulation and automation
Stars: ✭ 73 (-94.18%)
Mutual labels:  jinja2
Generate Template Files
A simple generator to create custom template files for any application
Stars: ✭ 60 (-95.22%)
Mutual labels:  templating
Dtparse
A dateutil-compatible timestamp parser for Rust
Stars: ✭ 45 (-96.41%)
Mutual labels:  rust-library
Pebble Intellij
Pebble support for IntelliJ IDEA
Stars: ✭ 68 (-94.58%)
Mutual labels:  templating
Run script
Run shell scripts in rust.
Stars: ✭ 42 (-96.65%)
Mutual labels:  rust-library
Actix Protobuf
Protobuf integration for actix web
Stars: ✭ 75 (-94.02%)
Mutual labels:  rust-library
Log
Logging implementation for Rust
Stars: ✭ 1,012 (-19.36%)
Mutual labels:  rust-library
Metalsmith In Place
🏙️ A metalsmith plugin for in-place templating
Stars: ✭ 52 (-95.86%)
Mutual labels:  templating
Lor Axe
🪓 a multi-threaded, low-bandwidth HTTP DOS tool
Stars: ✭ 72 (-94.26%)
Mutual labels:  rust-library
Yglu
Yglu ᕄ !? - YAML glue for structural templating and processing
Stars: ✭ 51 (-95.94%)
Mutual labels:  templating
Ical Rs
Rust parser for ics (rfc5545) and vcard (rfc6350)
Stars: ✭ 46 (-96.33%)
Mutual labels:  rust-library

Askama

Documentation Latest version Build Status Chat

Askama implements a template rendering engine based on Jinja. It generates Rust code from your templates at compile time based on a user-defined struct to hold the template's context. See below for an example, or read the book.

"Pretty exciting. I would love to use this already." -- Armin Ronacher, creator of Jinja

All feedback welcome. Feel free to file bugs, requests for documentation and any other feedback to the issue tracker or tweet me.

Askama was created by and is maintained by Dirkjan Ochtman. If you are in a position to support ongoing maintenance and further development or use it in a for-profit context, please consider supporting my open source work on Patreon.

Feature highlights

  • Construct templates using a familiar, easy-to-use syntax
  • Benefit from the safety provided by Rust's type system
  • Template code is compiled into your crate for optimal performance
  • Optional built-in support for Actix, Gotham, Iron, Rocket, tide, and warp web frameworks
  • Debugging features to assist you in template development
  • Templates must be valid UTF-8 and produce UTF-8 when rendered
  • Works on stable Rust

Supported in templates

  • Template inheritance
  • Loops, if/else statements and include support
  • Macro support
  • Variables (no mutability allowed)
  • Some built-in filters, and the ability to use your own
  • Whitespace suppressing with '-' markers
  • Opt-out HTML escaping
  • Syntax customization

How to get started

First, add the following to your crate's Cargo.toml:

# in section [dependencies]
askama = "0.8"

Now create a directory called templates in your crate root. In it, create a file called hello.html, containing the following:

Hello, {{ name }}!

In any Rust file inside your crate, add the following:

use askama::Template; // bring trait in scope

#[derive(Template)] // this will generate the code...
#[template(path = "hello.html")] // using the template in this path, relative
                                 // to the `templates` dir in the crate root
struct HelloTemplate<'a> { // the name of the struct can be anything
    name: &'a str, // the field name should match the variable name
                   // in your template
}

fn main() {
    let hello = HelloTemplate { name: "world" }; // instantiate your struct
    println!("{}", hello.render().unwrap()); // then render it.
}

You should now be able to compile and run this code.

Review the test cases for more examples.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].