/** * Micromark extension for HTML entities without semicolons. * * Handles named entities (e.g. ` `, `&`, `©`), decimal numeric * references (e.g. ` `, `©`), and hex numeric references (e.g. ` `, * ` `). Entities that already include the semicolon are left for the * standard parser to handle. */ export { looseHtmlEntity, looseHtmlEntityFromMarkdown } from './syntax';