mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
f6ec8c4821
Port d185f3ddaf
to glitch-soc
This doesn't change anything for glitch-style fields, but those will go
away eventually
7 lines
198 B
JavaScript
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;
|
|
};
|