Skip to content

Commit

Permalink
bug: Fix hashtag regex blocking transform to heading
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed Mar 26, 2024
1 parent e43b59a commit 5ae32f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
const hashtagAlpha = '[' + alpha + ']';
const hashtagAlphanumeric = '[' + alphanumeric + ']';
const hashtagBoundary = '^|$|[^&/' + alphanumeric + ']';
const hashtagBoundary = '^|$|[^&/' + alphanumeric + hashChars + ']';
const hashCharList = '[' + hashChars + ']';
// A hashtag contains characters, numbers and underscores,
Expand Down

0 comments on commit 5ae32f2

Please sign in to comment.