Preserve newlines in delete & redraft and desktop notifications (#7750)
Fix #7748
This commit is contained in:
parent
b7b331ad0d
commit
c75493755f
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,5 @@
|
|||
export const unescapeHTML = (html) => {
|
||||
const wrapper = document.createElement('div');
|
||||
html = html.replace(/<br \/>|<br>|\n/g, ' ');
|
||||
wrapper.innerHTML = html;
|
||||
wrapper.innerHTML = html.replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n').replace(/<[^>]*>/g, '');
|
||||
return wrapper.textContent;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue