~cytrogen/masto-fe

ref: ae30a60b1f6b7f51be38fe541e42a80ee2242d79 masto-fe/app/javascript/mastodon/utils/html.js -rw-r--r-- 282 bytes
ae30a60b — Renaud Chaput Improve dismissable banner buttons when they dont fit on 1 line (#25580) 2 years ago
                                                                                
1
2
3
4
5
6
// 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, '');
  return wrapper.textContent;
};