summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2025-04-14 12:49:44 -0400
committerAdam T. Carpenter <atc@53hor.net>2025-04-14 12:49:44 -0400
commit05546b80325808b947b7246e1d7191a26571e54a (patch)
treebbcc239ed727323824f5ff89908fd32656c28479 /src
parent630003fff596f462d454a56223c02350d8b5543b (diff)
downloadcarpentertutoring-05546b80325808b947b7246e1d7191a26571e54a.tar.xz
carpentertutoring-05546b80325808b947b7246e1d7191a26571e54a.zip
fix: catch and strip bold emphasis markdown
Diffstat (limited to 'src')
-rw-r--r--src/posts/fs_post.rs1
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(),
)
}