pull/393/head
Lim Chee Aun 2024-01-10 01:48:20 +08:00
rodzic d71b1a7e36
commit ffabd6188d
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,17 @@ function getHTMLText(html) {
div.querySelectorAll('br').forEach((br) => {
br.replaceWith('\n');
});
// MASTODON-SPECIFIC classes
// Remove .invisible
div.querySelectorAll('.invisible').forEach((el) => {
el.remove();
});
// Add at end of .ellipsis
div.querySelectorAll('.ellipsis').forEach((el) => {
el.append('...');
});
return div.innerText.replace(/[\r\n]{3,}/g, '\n\n').trim();
}