fix: support Unicode characters in hashtag parsing
Hashtag regex only matched ASCII letters, so accented characters like
the á in #Bogotá were excluded. Switch to \p{L} and \p{N} Unicode
classes so hashtags with diacritics, CJK, Cyrillic, etc. are fully
matched and clickable.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>