maud icon indicating copy to clipboard operation
maud copied to clipboard

[ feature request ] Support strict mode

Open yonas opened this issue 7 months ago • 0 comments

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!" }
}

yonas avatar May 14 '25 20:05 yonas