- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
18 lines
296 B
JavaScript
18 lines
296 B
JavaScript
/**
|
|
* @typedef {import('micromark-util-types').Event} Event
|
|
*/
|
|
|
|
import {subtokenize} from 'micromark-util-subtokenize'
|
|
|
|
/**
|
|
* @param {Array<Event>} events
|
|
* @returns {Array<Event>}
|
|
*/
|
|
export function postprocess(events) {
|
|
while (!subtokenize(events)) {
|
|
// Empty
|
|
}
|
|
|
|
return events
|
|
}
|