Urara-Blog/node_modules/.pnpm-store/v3/files/a0/42d8cb09c835c6a0b2f27cdf0c6eadefe835be2952067468cbf5b2a770257b4691a2a9de5cab9b3accd26193f80b63d1b6d0414172edc7b8f4038316cf392d
2022-08-14 01:14:53 +08:00

55 lines
1.3 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @typedef {import('micromark-util-types').Construct} Construct
* @typedef {import('micromark-util-types').Tokenizer} Tokenizer
* @typedef {import('micromark-util-types').State} State
*/
import {labelEnd} from './label-end.js'
/** @type {Construct} */
export const labelStartImage = {
name: 'labelStartImage',
tokenize: tokenizeLabelStartImage,
resolveAll: labelEnd.resolveAll
}
/** @type {Tokenizer} */
function tokenizeLabelStartImage(effects, ok, nok) {
const self = this
return start
/** @type {State} */
function start(code) {
effects.enter('labelImage')
effects.enter('labelImageMarker')
effects.consume(code)
effects.exit('labelImageMarker')
return open
}
/** @type {State} */
function open(code) {
if (code === 91) {
effects.enter('labelMarker')
effects.consume(code)
effects.exit('labelMarker')
effects.exit('labelImage')
return after
}
return nok(code)
}
/** @type {State} */
function after(code) {
/* To do: remove in the future once weve switched from
* `micromark-extension-footnote` to `micromark-extension-gfm-footnote`,
* which doesnt need this */
/* Hidden footnotes hook */
/* c8 ignore next 3 */
return code === 94 && '_hiddenFootnoteSupport' in self.parser.constructs
? nok(code)
: ok(code)
}
}