shd101wyy/ribbit

[Idea] Allow tag that has spaces.

Closed this issue · 1 comments

Modify const compressedTag = compressString(tag.toLowerCase()); in lib/user.ts to const compressedTag = compressString(tag.toLowerCase().replace(/\s/g, ''));.

So #{I hate you} and #{IHateYou} points to the same topic.

Finished.