~cytrogen/masto-fe

ref: 785e650ab44e9ffd28f4284f68ae82007f5609bb masto-fe/app/javascript/mastodon/utils/html.js -rw-r--r-- 282 bytes
785e650a — Daniel M Brasil Fix uncaught TypeError in POST `/api/v1/featured_tags` (#25072) 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;
};