forked from treehouse/mastodon
7 lines
282 B
JavaScript
7 lines
282 B
JavaScript
// NB: This function can still return unsafe HTML
|
|
export const unescapeHTML = (html) => {
|
|
const wrapper = document.createElement('div');
|
|
wrapper.innerHTML = html.replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n').replace(/<[^>]*>/g, '');
|
|
return wrapper.textContent;
|
|
};
|