In "strict mode", elements that are not part of the HTML standard will break `cargo build`. For example, I might have a typo: ```html html! { ah1 { "Hello, World!" } } ``` which should have been: ```html html! { h1 { "Hello, World!" } } ```