|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import {blankLine, content} from 'micromark-core-commonmark' |
|
import {factorySpace} from 'micromark-factory-space' |
|
import {markdownLineEnding} from 'micromark-util-character' |
|
import {codes} from 'micromark-util-symbol/codes.js' |
|
import {types} from 'micromark-util-symbol/types.js' |
|
import {ok as assert} from 'uvu/assert' |
|
|
|
|
|
export const flow = {tokenize: initializeFlow} |
|
|
|
|
|
|
|
|
|
|
|
function initializeFlow(effects) { |
|
const self = this |
|
const initial = effects.attempt( |
|
|
|
blankLine, |
|
atBlankEnding, |
|
|
|
effects.attempt( |
|
this.parser.constructs.flowInitial, |
|
afterConstruct, |
|
factorySpace( |
|
effects, |
|
effects.attempt( |
|
this.parser.constructs.flow, |
|
afterConstruct, |
|
effects.attempt(content, afterConstruct) |
|
), |
|
types.linePrefix |
|
) |
|
) |
|
) |
|
|
|
return initial |
|
|
|
|
|
function atBlankEnding(code) { |
|
assert( |
|
code === codes.eof || markdownLineEnding(code), |
|
'expected eol or eof' |
|
) |
|
|
|
if (code === codes.eof) { |
|
effects.consume(code) |
|
return |
|
} |
|
|
|
effects.enter(types.lineEndingBlank) |
|
effects.consume(code) |
|
effects.exit(types.lineEndingBlank) |
|
self.currentConstruct = undefined |
|
return initial |
|
} |
|
|
|
|
|
function afterConstruct(code) { |
|
assert( |
|
code === codes.eof || markdownLineEnding(code), |
|
'expected eol or eof' |
|
) |
|
|
|
if (code === codes.eof) { |
|
effects.consume(code) |
|
return |
|
} |
|
|
|
effects.enter(types.lineEnding) |
|
effects.consume(code) |
|
effects.exit(types.lineEnding) |
|
self.currentConstruct = undefined |
|
return initial |
|
} |
|
} |
|
|