/** * @import {Event} from 'micromark-util-types' */ import { subtokenize } from 'micromark-util-subtokenize'; /** * @param {Array} events * Events. * @returns {Array} * Events. */ export function postprocess(events) { while (!subtokenize(events)) { // Empty } return events; }