From fb4f5790fc3f4cb75a21c5edd8da4ac1d2539fb5 Mon Sep 17 00:00:00 2001 From: xfy Date: Wed, 3 Jun 2026 09:48:12 +0800 Subject: [PATCH] fix(api): remove hidden attr from anchor links, use CSS display instead --- src/api/posts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/posts.rs b/src/api/posts.rs index 8d16eac..693f1ca 100644 --- a/src/api/posts.rs +++ b/src/api/posts.rs @@ -261,7 +261,7 @@ fn render_markdown_enhanced(md: &str) -> RenderedContent { HeadingLevel::H6 => "h6", }; html.push_str(&format!( - "", + "#", id, tag )); heading_idx += 1;