diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-04-14 13:00:31 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-04-14 13:00:31 -0400 |
commit | 2b73eaa9415076224cc7d03b436973d7e7c89789 (patch) | |
tree | d5eb43f494d6665a1f4381df3ea02ff920d38063 /src | |
parent | 718f8cd89d2b2fcba4e27014d69167e8ce986de9 (diff) | |
download | carpentertutoring-2b73eaa9415076224cc7d03b436973d7e7c89789.tar.xz carpentertutoring-2b73eaa9415076224cc7d03b436973d7e7c89789.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/posts/fs_post.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/posts/fs_post.rs b/src/posts/fs_post.rs index 6023c40..a1de678 100644 --- a/src/posts/fs_post.rs +++ b/src/posts/fs_post.rs @@ -31,6 +31,8 @@ impl Post for FsPost { .unwrap_or_default() .trim_start_matches('_') .trim_start_matches('*') + .trim_end_matches('_') + .trim_end_matches('*') .to_owned(), ) } |