2022-12-15 00:41:48 +08:00
|
|
|
const div = document.createElement('div');
|
2022-12-16 13:27:04 +08:00
|
|
|
export default function htmlContentLength(html) {
|
2022-12-19 17:30:10 +08:00
|
|
|
if (!html) return 0;
|
2022-12-15 00:41:48 +08:00
|
|
|
div.innerHTML = html;
|
2023-12-16 16:05:03 +08:00
|
|
|
// .invisible spans for links
|
|
|
|
// e.g. <span class="invisible">https://</span>mastodon.social
|
|
|
|
div.querySelectorAll('.invisible').forEach((el) => {
|
|
|
|
el.remove();
|
|
|
|
});
|
2022-12-15 00:41:48 +08:00
|
|
|
return div.innerText.length;
|
2022-12-16 13:27:04 +08:00
|
|
|
}
|