~cytrogen/masto-fe

ref: c541d569cf6b2f4746f12339d6e7111334f2fa17 masto-fe/app/javascript/flavours/glitch/utils/html.js -rw-r--r-- 232 bytes
c541d569 — tobi [chore] Use sloth flavour 1 year, 4 months ago
                                                                                
1
2
3
4
5
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;
};