Add comment, test to unescapeHTML (#7949)
This commit is contained in:
committed by
Yamagishi Kazutoshi
parent
cdfe51e325
commit
1e65cdf821
@ -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, '');
|
||||
|
Reference in New Issue
Block a user