fmt and clippy
All checks were successful
CI / lint (push) Successful in 3m24s
CI / Build and test (, beta) (push) Successful in 7m0s
CI / Build and test (, 1.73.0) (push) Successful in 7m39s
CI / Build and test (, nightly) (push) Successful in 5m59s

This commit is contained in:
2023-11-25 21:43:30 +01:00
parent 2385f33e6b
commit f0b2536e86

View File

@ -46,10 +46,24 @@ fn format_tree(tree: Rc<Node>, state: FormatState, spans: &mut Vec<Span<'static>
});
state
},
Element { name: QualName { ns: ns!(html), local: name, .. }, attrs, .. } => match name.as_ref() {
"em" | "i" => FormatState { style: state.style.italic(), ..state },
"strong" | "b" => FormatState { style: state.style.bold(), ..state },
"u" => FormatState { style: state.style.underlined(), ..state },
Element {
name: QualName {
ns: ns!(html),
local: name,
..
},
attrs,
..
} => match name.as_ref() {
"em" | "i" => FormatState {
style: state.style.italic(),
},
"strong" | "b" => FormatState {
style: state.style.bold(),
},
"u" => FormatState {
style: state.style.underlined(),
},
_ => state,
},
Element { .. } => state, // Element not in the HTML namespace