cargo fmt

This commit is contained in:
Greg Johnston 2023-01-11 20:58:26 -05:00
parent b1ac17995d
commit 2ef36c65fd

View file

@ -393,13 +393,14 @@ impl View {
} else if name == "inner_html" {
inner_html = Some(value);
None
}
else {
Some(format!(
} else {
Some(
format!(
" {name}=\"{}\"",
html_escape::encode_double_quoted_attribute(&value)
)
.into())
.into(),
)
}
})
.join("");