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