Add comment, test to unescapeHTML (#7949)
This commit is contained in:
parent
cdfe51e325
commit
1e65cdf821
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
// 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, '');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue