From 05546b80325808b947b7246e1d7191a26571e54a Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 14 Apr 2025 12:49:44 -0400 Subject: fix: catch and strip bold emphasis markdown --- src/posts/fs_post.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/posts/fs_post.rs') diff --git a/src/posts/fs_post.rs b/src/posts/fs_post.rs index 8f1a435..6023c40 100644 --- a/src/posts/fs_post.rs +++ b/src/posts/fs_post.rs @@ -30,6 +30,7 @@ impl Post for FsPost { .map(|(first, _)| first) .unwrap_or_default() .trim_start_matches('_') + .trim_start_matches('*') .to_owned(), ) } -- cgit v1.2.3