~cytrogen/masto-fe

ref: 1745c582f8eed1d1dacef5b5c7c735e4fd80574a masto-fe/app/javascript/mastodon/utils/html.js -rw-r--r-- 282 bytes
1745c582 — renovate[bot] Update dependency sidekiq to v6.5.11 (#27345) 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;
};