diff options
-rw-r--r-- | src/posts/fs_post.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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(), ) } |