Only modify attributes on attached elements
I've seen a 10-20% speedup on larger articles. Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
This commit is contained in:
parent
cd5132f28c
commit
b5f0b22f7a
1 changed files with 19 additions and 3 deletions
22
src/html.rs
22
src/html.rs
|
@ -326,10 +326,26 @@ fn remove_empty_sections(document: &mut Html) {
|
|||
}
|
||||
|
||||
fn remove_attrs(document: &mut Html) {
|
||||
// TODO: See if finding and skipping detached nodes is significantly faster.
|
||||
let mut to_remove = Vec::new();
|
||||
for node in document.tree.values_mut() {
|
||||
let Node::Element(el) = node else { continue };
|
||||
|
||||
let all_elements: Vec<_> = document
|
||||
.tree
|
||||
.root()
|
||||
.descendants()
|
||||
.filter_map(ElementRef::wrap)
|
||||
.map(|el| el.id())
|
||||
.collect();
|
||||
|
||||
trace!("Removing attributes on {} elements", all_elements.len());
|
||||
|
||||
for id in all_elements {
|
||||
let Some(mut node) = document.tree.get_mut(id) else {
|
||||
trace!("Invalid id: {:?}", id);
|
||||
continue;
|
||||
};
|
||||
let Node::Element(el) = node.value() else {
|
||||
continue;
|
||||
};
|
||||
|
||||
if el.name() == "span" {
|
||||
for attr in ["style", "class"]
|
||||
|
|
Loading…
Add table
Reference in a new issue