21 lines
1.3 KiB
Markdown
21 lines
1.3 KiB
Markdown
# <img align="right" src="maud.png" alt="HTML5 rocks." title="HTML5 rocks."> maud [](http://travis-ci.org/lfairy/maud) [](https://crates.io/crates/maud)
|
|
|
|
[Documentation][book] ([source][booksrc]) • [API reference][apiref] • [Change log][changelog]
|
|
|
|
Maud is an HTML template engine for Rust. It's implemented as a macro, `html!`, which compiles your markup to specialized Rust code. This unique approach makes Maud templates blazing fast, super type-safe, and easy to deploy.
|
|
|
|
Note that Maud depends on the unstable [syntax extension APIs][plugins], and so requires the Nightly version of Rust.
|
|
|
|
For more info on Maud, see the [official book][book].
|
|
|
|
[book]: https://maud.lambda.xyz/
|
|
[booksrc]: https://github.com/lfairy/maud-book
|
|
[apiref]: https://lambda.xyz/maud/maud/
|
|
[changelog]: https://github.com/lfairy/maud/blob/master/CHANGELOG.md
|
|
[plugins]: https://doc.rust-lang.org/book/compiler-plugins.html
|
|
|
|
## Stability
|
|
|
|
As of version 0.11, I am satisfied with the core syntax and semantics of the library. Development at this stage is focused on adding features and fixing bugs.
|
|
|
|
The underlying syntax extension API is still unstable though, so updating your compiler may break things. Please file an issue when this happens!
|