personal web client for Bluesky
typescript solidjs bluesky atcute
at trunk 150 B view raw
1const WS_TRIM_RE = /^\s+|\s+$| +(?=\n)|\n(?=(?: *\n){2}) */g; 2 3export const trimRichText = (str: string) => { 4 return str.replace(WS_TRIM_RE, ''); 5};