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" { } else if name == "inner_html" {
inner_html = Some(value); inner_html = Some(value);
None None
} } else {
else { Some(
Some(format!( format!(
" {name}=\"{}\"", " {name}=\"{}\"",
html_escape::encode_double_quoted_attribute(&value) html_escape::encode_double_quoted_attribute(&value)
)
.into(),
) )
.into())
} }
}) })
.join(""); .join("");