|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import {factorySpace} from 'micromark-factory-space' |
|
import {markdownLineEnding} from 'micromark-util-character' |
|
import {codes} from 'micromark-util-symbol/codes.js' |
|
import {constants} from 'micromark-util-symbol/constants.js' |
|
import {types} from 'micromark-util-symbol/types.js' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function factoryTitle(effects, ok, nok, type, markerType, stringType) { |
|
|
|
let marker |
|
|
|
return start |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function start(code) { |
|
if ( |
|
code === codes.quotationMark || |
|
code === codes.apostrophe || |
|
code === codes.leftParenthesis |
|
) { |
|
effects.enter(type) |
|
effects.enter(markerType) |
|
effects.consume(code) |
|
effects.exit(markerType) |
|
marker = code === codes.leftParenthesis ? codes.rightParenthesis : code |
|
return begin |
|
} |
|
|
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function begin(code) { |
|
if (code === marker) { |
|
effects.enter(markerType) |
|
effects.consume(code) |
|
effects.exit(markerType) |
|
effects.exit(type) |
|
return ok |
|
} |
|
|
|
effects.enter(stringType) |
|
return atBreak(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function atBreak(code) { |
|
if (code === marker) { |
|
effects.exit(stringType) |
|
return begin(marker) |
|
} |
|
|
|
if (code === codes.eof) { |
|
return nok(code) |
|
} |
|
|
|
|
|
if (markdownLineEnding(code)) { |
|
|
|
effects.enter(types.lineEnding) |
|
effects.consume(code) |
|
effects.exit(types.lineEnding) |
|
return factorySpace(effects, atBreak, types.linePrefix) |
|
} |
|
|
|
effects.enter(types.chunkString, {contentType: constants.contentTypeString}) |
|
return inside(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
function inside(code) { |
|
if (code === marker || code === codes.eof || markdownLineEnding(code)) { |
|
effects.exit(types.chunkString) |
|
return atBreak(code) |
|
} |
|
|
|
effects.consume(code) |
|
return code === codes.backslash ? escape : inside |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function escape(code) { |
|
if (code === marker || code === codes.backslash) { |
|
effects.consume(code) |
|
return inside |
|
} |
|
|
|
return inside(code) |
|
} |
|
} |
|
|