module: thread hyperhive package directly — operators don't apply overlays

This commit is contained in:
müde 2026-05-15 16:51:18 +02:00
parent 8dc9b24934
commit 4f91dfef99
6 changed files with 23 additions and 25 deletions

View file

@ -312,11 +312,7 @@ fn render_diff_lines(diff: &str) -> String {
Some(b'-') => "diff-del",
_ => "diff-ctx",
};
let _ = writeln!(
out,
"<span class=\"{cls}\">{}</span>",
html_escape(raw),
);
let _ = writeln!(out, "<span class=\"{cls}\">{}</span>", html_escape(raw),);
}
out
}