d185f3ddaf
Fix #7383
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;
|
|
};
|