Fix anchors not applying destination resolution

This commit is contained in:
Juno Takano 2025-12-25 23:54:09 -03:00
commit 78a3ef4a48

View file

@ -25,7 +25,11 @@ impl Parseable for Anchor {
)
};
format!(r#"<a href="{}">{}</a>"#, destination, &self.text)
format!(
r#"<a href="{}">{}</a>"#,
Anchor::resolve_destination(destination),
&self.text
)
}
}