We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following snippet produces corrupt markup:
span attr=(r#"Hello"World"#) {} div {}
Results in the following markup:
<span attr="hello"world" div></span>
The resulting visuals are ... beyond broken :/
The text was updated successfully, but these errors were encountered:
Thanks for reporting. We changed attribute syntax recently so I wonder if that's related. Alternatively, does #412 fix the bug?
Sorry, something went wrong.
I can't reproduce this
#!/usr/bin/env -S cargo +nightly -Zscript ---cargo [dependencies] maud = "0.26.0" --- use maud::html; fn main() { let result = html! { span attr=(r#"Hello"World"#) {} div {} }; println!("{}", result.into_string()); }
$ ./test.rs warning: `package.edition` is unspecified, defaulting to `2024` Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.01s Running `/Users/chris/.cargo/target/5f/ee1580da564425/debug/test-` <span attr="Hello"World"></span><div></div>
Please reopen if you have a self-contained example that reproduces the bug.
lambda-fairy
No branches or pull requests
The following snippet produces corrupt markup:
Results in the following markup:
The resulting visuals are ... beyond broken :/
The text was updated successfully, but these errors were encountered: