this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Slightly more accurate content length

+5
+5
src/utils/html-content-length.js
··· 2 2 export default function htmlContentLength(html) { 3 3 if (!html) return 0; 4 4 div.innerHTML = html; 5 + // .invisible spans for links 6 + // e.g. <span class="invisible">https://</span>mastodon.social 7 + div.querySelectorAll('.invisible').forEach((el) => { 8 + el.remove(); 9 + }); 5 10 return div.innerText.length; 6 11 }