fixed: removed debug output

This commit is contained in:
James Liu 2024-11-07 14:19:40 -05:00
parent 0f694dddd8
commit 340ce2b5f3
No known key found for this signature in database
GPG key ID: 4D83DC1EBB6E0DF5

View file

@ -152,7 +152,6 @@ impl Traverser for HtmlExport {
if let Some(parent) = c.syntax().parent() {
if parent.kind() == SyntaxKind::FN_REF || parent.kind() == SyntaxKind::FN_DEF {
let label = token(&parent, SyntaxKind::FN_LABEL).unwrap();
dbg!(&label);
let _ = write!(&mut self.output, "id=\"footnote_{}\" ", label);
}
}