- 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
15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
/**
|
|
* Tokenize subcontent.
|
|
*
|
|
* @param {Array<Event>} events
|
|
* List of events.
|
|
* @returns {boolean}
|
|
* Whether subtokens were found.
|
|
*/
|
|
export function subtokenize(
|
|
events: Array<import('micromark-util-types').Event>
|
|
): boolean
|
|
export type Chunk = import('micromark-util-types').Chunk
|
|
export type Event = import('micromark-util-types').Event
|
|
export type Token = import('micromark-util-types').Token
|