diff options
author | vallentin <mail@vallentin.dev> | 2020-12-26 04:02:12 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-12-26 07:38:36 +0100 |
commit | b880799c31ddae53be242c6511794f5d7d35de6e (patch) | |
tree | 7bd3c0a5f90236dfaa5baefc9c16d1106f227896 | |
parent | b5d97479703166300883922454bf2099e1c3cd6c (diff) | |
download | askama-b880799c31ddae53be242c6511794f5d7d35de6e.tar.gz askama-b880799c31ddae53be242c6511794f5d7d35de6e.tar.bz2 askama-b880799c31ddae53be242c6511794f5d7d35de6e.zip |
Updated book to be on par with readme
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | book/src/askama.md | 7 |
2 files changed, 1 insertions, 7 deletions
@@ -47,7 +47,6 @@ in a for-profit context, please consider supporting my open source work on [mitsuhiko]: http://lucumr.pocoo.org/ [issues]: https://github.com/djc/askama/issues [twitter]: https://twitter.com/djco/ -[dtolnay]: https://github.com/dtolnay [patreon]: https://www.patreon.com/dochtman [benchmarks]: https://github.com/djc/template-benchmarks-rs diff --git a/book/src/askama.md b/book/src/askama.md index 95d4a04..504a4e5 100644 --- a/book/src/askama.md +++ b/book/src/askama.md @@ -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 and warp web frameworks * Debugging features to assist you in template development * Templates must be valid UTF-8 and produce UTF-8 when rendered @@ -51,6 +47,5 @@ in a for-profit context, please consider supporting my open source work on [mitsuhiko]: http://lucumr.pocoo.org/ [issues]: https://github.com/djc/askama/issues [twitter]: https://twitter.com/djco/ -[dtolnay]: https://github.com/dtolnay [patreon]: https://www.patreon.com/dochtman [benchmarks]: https://github.com/djc/template-benchmarks-rs |