UNPKG

micromark

Version:

small commonmark compliant markdown parser with positional info and concrete tokens

12 lines (8 loc) 178 B
export default postprocess import subtokenize from './util/subtokenize.mjs' function postprocess(events) { while (!subtokenize(events)) { // Empty } return events }