clickable user mentions

This commit is contained in:
Henry Hiles 2026-04-04 11:34:40 -04:00
commit d70c439278
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
5 changed files with 83 additions and 26 deletions

View file

@ -0,0 +1,3 @@
extension GetLocalpart on String {
String get localpart => substring(1).split(":").first;
}