From 705fc670c7d393297664018fc668f7a748477714 Mon Sep 17 00:00:00 2001 From: thek4n Date: Wed, 15 Jul 2026 11:14:48 +0300 Subject: [PATCH] fix: footnotes --- src/markdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.rs b/src/markdown.rs index 313e462..c1a8e62 100644 --- a/src/markdown.rs +++ b/src/markdown.rs @@ -351,7 +351,7 @@ pub fn markdown_to_html(markdown: &str, _file_path: &str) -> String { Event::FootnoteReference(fref) => { let _ = write!( html_output, - "" + "{fref}" ); }