diff --git a/crates/typst-library/src/loading/html.rs b/crates/typst-library/src/loading/html.rs
index 002536375..d14b6af59 100644
--- a/crates/typst-library/src/loading/html.rs
+++ b/crates/typst-library/src/loading/html.rs
@@ -56,7 +56,6 @@ fn convert_html(node_ref: NodeRef) -> Value {
// https://en.wikipedia.org/wiki/Processing_Instruction
Node::Doctype(..) | Node::ProcessingInstruction(..) => return Value::None,
Node::Comment(comment) => {
- // Werid but compatible with current `xml`.
return Value::Dict(dict! {
"tag" => "",
"attrs" => dict! {},