@readme/markdown
Version:
ReadMe's React-based Markdown parser
10 lines (9 loc) • 405 B
TypeScript
/**
* 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';