1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-20 09:33:49 -05:00

7 lines
198 B
JavaScript

export const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
html = html.replace(/<br \/>|<br>|\n/g, ' ');
wrapper.innerHTML = html;
return wrapper.textContent;
};