~cytrogen/masto-fe

ref: 6c05ac4068f2c942331458c00bbb8a835f0f56e5 masto-fe/app/javascript/mastodon/utils/html.js -rw-r--r-- 282 bytes
6c05ac40 — Stanislas Signoud [Glitch] Add an explanation banner on switching to single column mode 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;
};