|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import {factorySpace} from 'micromark-factory-space' |
|
import {markdownLineEnding} from 'micromark-util-character' |
|
import {subtokenize} from 'micromark-util-subtokenize' |
|
|
|
|
|
|
|
|
|
export const content = { |
|
tokenize: tokenizeContent, |
|
resolve: resolveContent |
|
} |
|
|
|
|
|
const continuationConstruct = { |
|
tokenize: tokenizeContinuation, |
|
partial: true |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function resolveContent(events) { |
|
subtokenize(events) |
|
return events |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function tokenizeContent(effects, ok) { |
|
|
|
let previous |
|
return chunkStart |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function chunkStart(code) { |
|
effects.enter('content') |
|
previous = effects.enter('chunkContent', { |
|
contentType: 'content' |
|
}) |
|
return chunkInside(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function chunkInside(code) { |
|
if (code === null) { |
|
return contentEnd(code) |
|
} |
|
|
|
|
|
|
|
if (markdownLineEnding(code)) { |
|
return effects.check( |
|
continuationConstruct, |
|
contentContinue, |
|
contentEnd |
|
)(code) |
|
} |
|
|
|
|
|
effects.consume(code) |
|
return chunkInside |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function contentEnd(code) { |
|
effects.exit('chunkContent') |
|
effects.exit('content') |
|
return ok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function contentContinue(code) { |
|
effects.consume(code) |
|
effects.exit('chunkContent') |
|
previous.next = effects.enter('chunkContent', { |
|
contentType: 'content', |
|
previous |
|
}) |
|
previous = previous.next |
|
return chunkInside |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function tokenizeContinuation(effects, ok, nok) { |
|
const self = this |
|
return startLookahead |
|
|
|
|
|
|
|
|
|
|
|
|
|
function startLookahead(code) { |
|
effects.exit('chunkContent') |
|
effects.enter('lineEnding') |
|
effects.consume(code) |
|
effects.exit('lineEnding') |
|
return factorySpace(effects, prefixed, 'linePrefix') |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function prefixed(code) { |
|
if (code === null || markdownLineEnding(code)) { |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
const tail = self.events[self.events.length - 1] |
|
if ( |
|
!self.parser.constructs.disable.null.includes('codeIndented') && |
|
tail && |
|
tail[1].type === 'linePrefix' && |
|
tail[2].sliceSerialize(tail[1], true).length >= 4 |
|
) { |
|
return ok(code) |
|
} |
|
return effects.interrupt(self.parser.constructs.flow, nok, ok)(code) |
|
} |
|
} |
|
|