maud
maud copied to clipboard
[ feature request ] Support strict mode
In "strict mode", elements that are not part of the HTML standard will break cargo build.
For example, I might have a typo:
html! {
ah1 { "Hello, World!" }
}
which should have been:
html! {
h1 { "Hello, World!" }
}