UNPKG

rehype-citation

Version:

rehype plugin to add citation and bibliography from bibtex files

13 lines (12 loc) 296 B
import { parseFragment } from 'parse5'; import { fromParse5 } from 'hast-util-from-parse5'; /** * Convert HTML to HAST node * * @param {string} html */ export const htmlToHast = (html) => { const p5ast = parseFragment(html); // @ts-ignore return fromParse5(p5ast).children[0]; };