No description
# Overview The following syntax will no longer work: ```rust html! { br / link rel="stylesheet" href="styles.css" / } ``` This should be changed to the following: ```rust html! { br; link rel="stylesheet" href="styles.css"; } ``` # Rationale The `;` syntax was introduced in #96; the rationale for it can be found there. Removing support for the older `/` syntax will simplify the API surface, and allow for the space to be used for other things. |
||
---|---|---|
.github/workflows | ||
docs | ||
doctest | ||
maud | ||
maud_macros | ||
.editorconfig | ||
.gitignore | ||
Cargo.toml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
maud.png | ||
README.md | ||
RELEASE_PROCESS.md | ||
rustfmt.toml |
maud
Documentation (source) • API reference • Change log
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.
For more info on Maud, see the official book.