fmt and clippy
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user