diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-12-18 13:22:24 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-12-18 13:45:30 +0100 |
commit | 8fa66ea0f7b6f2d33a7bc0437c7527fd9e0c2c94 (patch) | |
tree | 4266d5f71384db83596d661e4fe1301f9f12ea2e | |
parent | bc2e92e7d64a2987647f8702c4e5680acef03943 (diff) | |
download | askama-8fa66ea0f7b6f2d33a7bc0437c7527fd9e0c2c94.tar.gz askama-8fa66ea0f7b6f2d33a7bc0437c7527fd9e0c2c94.tar.bz2 askama-8fa66ea0f7b6f2d33a7bc0437c7527fd9e0c2c94.zip |
Some README updates (fixes #406)
Diffstat (limited to '')
-rw-r--r-- | README.md | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -10,15 +10,11 @@ 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][docs]. -**"I use Askama for actix's TechEmpower benchmarks."** -- -[Nikolay Kim][fafhrd91], creator of actix-web - **"Pretty exciting. I would love to use this already."** -- [Armin Ronacher][mitsuhiko], creator of Jinja All feedback welcome. Feel free to file bugs, requests for documentation and any other feedback to the [issue tracker][issues] or [tweet me][twitter]. -Many thanks to [David Tolnay][dtolnay] for his support in improving Askama. 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 @@ -28,8 +24,8 @@ in a for-profit context, please consider supporting my open source work on ### Feature highlights * Construct templates using a familiar, easy-to-use syntax -* Template code is compiled into your crate for [optimal performance][benchmarks] * Benefit from the safety provided by Rust's type system +* Template code is compiled into your crate for [optimal performance][benchmarks] * 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 |