~cytrogen/masto-fe

ref: ea1f9b4223baae32e6933c5bef0d8d3200fe4f2e masto-fe/app/javascript/flavours/glitch/utils/html.js -rw-r--r-- 232 bytes
ea1f9b42 — fusagiko / takayamaki [Glitch] Rename Image component to ServerHeroImage 2 years 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;
};