2023-11-15 11:40:52 +00:00
|
|
|
// NB: This function can still return unsafe HTML
|
2018-05-10 11:04:55 +00:00
|
|
|
export const unescapeHTML = (html) => {
|
|
|
|
const wrapper = document.createElement('div');
|
2018-06-15 19:31:08 +00:00
|
|
|
wrapper.innerHTML = html.replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n').replace(/<[^>]*>/g, '');
|
2018-05-10 11:04:55 +00:00
|
|
|
return wrapper.textContent;
|
|
|
|
};
|