Skip to content

Commit

Permalink
Revert "bug: Fix hashtag regex blocking transform to heading"
Browse files Browse the repository at this point in the history
This reverts commit 5ae32f2.
  • Loading branch information
umaranis committed Mar 26, 2024
1 parent 5ae32f2 commit 9bbcdb4
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 + hashChars + ']';
const hashtagBoundary = '^|$|[^&/' + alphanumeric + ']';
const hashCharList = '[' + hashChars + ']';
// A hashtag contains characters, numbers and underscores,
Expand Down

0 comments on commit 9bbcdb4

Please sign in to comment.