UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

11 lines (10 loc) 309 B
import entities from "./html-entities.json"; export function namedEntityToHexCode(html) { return html.replace(/&([a-z0-9]{2,8});/gi, (match, p1) => { const anyEntities = entities; if (anyEntities[p1]) { return `&#${anyEntities[p1]};`; } return match; }); }