|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { |
|
asciiAlpha, |
|
asciiAlphanumeric, |
|
markdownLineEnding, |
|
markdownLineEndingOrSpace, |
|
markdownSpace |
|
} from 'micromark-util-character' |
|
import {htmlBlockNames, htmlRawNames} from 'micromark-util-html-tag-name' |
|
import {blankLine} from './blank-line.js' |
|
|
|
|
|
export const htmlFlow = { |
|
name: 'htmlFlow', |
|
tokenize: tokenizeHtmlFlow, |
|
resolveTo: resolveToHtmlFlow, |
|
concrete: true |
|
} |
|
|
|
|
|
const blankLineBefore = { |
|
tokenize: tokenizeBlankLineBefore, |
|
partial: true |
|
} |
|
const nonLazyContinuationStart = { |
|
tokenize: tokenizeNonLazyContinuationStart, |
|
partial: true |
|
} |
|
|
|
|
|
function resolveToHtmlFlow(events) { |
|
let index = events.length |
|
while (index--) { |
|
if (events[index][0] === 'enter' && events[index][1].type === 'htmlFlow') { |
|
break |
|
} |
|
} |
|
if (index > 1 && events[index - 2][1].type === 'linePrefix') { |
|
|
|
events[index][1].start = events[index - 2][1].start |
|
|
|
events[index + 1][1].start = events[index - 2][1].start |
|
|
|
events.splice(index - 2, 2) |
|
} |
|
return events |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function tokenizeHtmlFlow(effects, ok, nok) { |
|
const self = this |
|
|
|
let marker |
|
|
|
let closingTag |
|
|
|
let buffer |
|
|
|
let index |
|
|
|
let markerB |
|
return start |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function start(code) { |
|
|
|
return before(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function before(code) { |
|
effects.enter('htmlFlow') |
|
effects.enter('htmlFlowData') |
|
effects.consume(code) |
|
return open |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function open(code) { |
|
if (code === 33) { |
|
effects.consume(code) |
|
return declarationOpen |
|
} |
|
if (code === 47) { |
|
effects.consume(code) |
|
closingTag = true |
|
return tagCloseStart |
|
} |
|
if (code === 63) { |
|
effects.consume(code) |
|
marker = 3 |
|
|
|
|
|
|
|
|
|
|
|
return self.interrupt ? ok : continuationDeclarationInside |
|
} |
|
|
|
|
|
if (asciiAlpha(code)) { |
|
effects.consume(code) |
|
|
|
buffer = String.fromCharCode(code) |
|
return tagName |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function declarationOpen(code) { |
|
if (code === 45) { |
|
effects.consume(code) |
|
marker = 2 |
|
return commentOpenInside |
|
} |
|
if (code === 91) { |
|
effects.consume(code) |
|
marker = 5 |
|
index = 0 |
|
return cdataOpenInside |
|
} |
|
|
|
|
|
if (asciiAlpha(code)) { |
|
effects.consume(code) |
|
marker = 4 |
|
|
|
|
|
return self.interrupt ? ok : continuationDeclarationInside |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function commentOpenInside(code) { |
|
if (code === 45) { |
|
effects.consume(code) |
|
|
|
|
|
return self.interrupt ? ok : continuationDeclarationInside |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function cdataOpenInside(code) { |
|
const value = 'CDATA[' |
|
if (code === value.charCodeAt(index++)) { |
|
effects.consume(code) |
|
if (index === value.length) { |
|
|
|
|
|
return self.interrupt ? ok : continuation |
|
} |
|
return cdataOpenInside |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tagCloseStart(code) { |
|
if (asciiAlpha(code)) { |
|
effects.consume(code) |
|
|
|
buffer = String.fromCharCode(code) |
|
return tagName |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tagName(code) { |
|
if ( |
|
code === null || |
|
code === 47 || |
|
code === 62 || |
|
markdownLineEndingOrSpace(code) |
|
) { |
|
const slash = code === 47 |
|
const name = buffer.toLowerCase() |
|
if (!slash && !closingTag && htmlRawNames.includes(name)) { |
|
marker = 1 |
|
|
|
|
|
return self.interrupt ? ok(code) : continuation(code) |
|
} |
|
if (htmlBlockNames.includes(buffer.toLowerCase())) { |
|
marker = 6 |
|
if (slash) { |
|
effects.consume(code) |
|
return basicSelfClosing |
|
} |
|
|
|
|
|
|
|
return self.interrupt ? ok(code) : continuation(code) |
|
} |
|
marker = 7 |
|
|
|
return self.interrupt && !self.parser.lazy[self.now().line] |
|
? nok(code) |
|
: closingTag |
|
? completeClosingTagAfter(code) |
|
: completeAttributeNameBefore(code) |
|
} |
|
|
|
|
|
if (code === 45 || asciiAlphanumeric(code)) { |
|
effects.consume(code) |
|
buffer += String.fromCharCode(code) |
|
return tagName |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function basicSelfClosing(code) { |
|
if (code === 62) { |
|
effects.consume(code) |
|
|
|
|
|
return self.interrupt ? ok : continuation |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeClosingTagAfter(code) { |
|
if (markdownSpace(code)) { |
|
effects.consume(code) |
|
return completeClosingTagAfter |
|
} |
|
return completeEnd(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeNameBefore(code) { |
|
if (code === 47) { |
|
effects.consume(code) |
|
return completeEnd |
|
} |
|
|
|
|
|
if (code === 58 || code === 95 || asciiAlpha(code)) { |
|
effects.consume(code) |
|
return completeAttributeName |
|
} |
|
if (markdownSpace(code)) { |
|
effects.consume(code) |
|
return completeAttributeNameBefore |
|
} |
|
return completeEnd(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeName(code) { |
|
|
|
if ( |
|
code === 45 || |
|
code === 46 || |
|
code === 58 || |
|
code === 95 || |
|
asciiAlphanumeric(code) |
|
) { |
|
effects.consume(code) |
|
return completeAttributeName |
|
} |
|
return completeAttributeNameAfter(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeNameAfter(code) { |
|
if (code === 61) { |
|
effects.consume(code) |
|
return completeAttributeValueBefore |
|
} |
|
if (markdownSpace(code)) { |
|
effects.consume(code) |
|
return completeAttributeNameAfter |
|
} |
|
return completeAttributeNameBefore(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeValueBefore(code) { |
|
if ( |
|
code === null || |
|
code === 60 || |
|
code === 61 || |
|
code === 62 || |
|
code === 96 |
|
) { |
|
return nok(code) |
|
} |
|
if (code === 34 || code === 39) { |
|
effects.consume(code) |
|
markerB = code |
|
return completeAttributeValueQuoted |
|
} |
|
if (markdownSpace(code)) { |
|
effects.consume(code) |
|
return completeAttributeValueBefore |
|
} |
|
return completeAttributeValueUnquoted(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeValueQuoted(code) { |
|
if (code === markerB) { |
|
effects.consume(code) |
|
markerB = null |
|
return completeAttributeValueQuotedAfter |
|
} |
|
if (code === null || markdownLineEnding(code)) { |
|
return nok(code) |
|
} |
|
effects.consume(code) |
|
return completeAttributeValueQuoted |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeValueUnquoted(code) { |
|
if ( |
|
code === null || |
|
code === 34 || |
|
code === 39 || |
|
code === 47 || |
|
code === 60 || |
|
code === 61 || |
|
code === 62 || |
|
code === 96 || |
|
markdownLineEndingOrSpace(code) |
|
) { |
|
return completeAttributeNameAfter(code) |
|
} |
|
effects.consume(code) |
|
return completeAttributeValueUnquoted |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAttributeValueQuotedAfter(code) { |
|
if (code === 47 || code === 62 || markdownSpace(code)) { |
|
return completeAttributeNameBefore(code) |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeEnd(code) { |
|
if (code === 62) { |
|
effects.consume(code) |
|
return completeAfter |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function completeAfter(code) { |
|
if (code === null || markdownLineEnding(code)) { |
|
|
|
|
|
return continuation(code) |
|
} |
|
if (markdownSpace(code)) { |
|
effects.consume(code) |
|
return completeAfter |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuation(code) { |
|
if (code === 45 && marker === 2) { |
|
effects.consume(code) |
|
return continuationCommentInside |
|
} |
|
if (code === 60 && marker === 1) { |
|
effects.consume(code) |
|
return continuationRawTagOpen |
|
} |
|
if (code === 62 && marker === 4) { |
|
effects.consume(code) |
|
return continuationClose |
|
} |
|
if (code === 63 && marker === 3) { |
|
effects.consume(code) |
|
return continuationDeclarationInside |
|
} |
|
if (code === 93 && marker === 5) { |
|
effects.consume(code) |
|
return continuationCdataInside |
|
} |
|
if (markdownLineEnding(code) && (marker === 6 || marker === 7)) { |
|
effects.exit('htmlFlowData') |
|
return effects.check( |
|
blankLineBefore, |
|
continuationAfter, |
|
continuationStart |
|
)(code) |
|
} |
|
if (code === null || markdownLineEnding(code)) { |
|
effects.exit('htmlFlowData') |
|
return continuationStart(code) |
|
} |
|
effects.consume(code) |
|
return continuation |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationStart(code) { |
|
return effects.check( |
|
nonLazyContinuationStart, |
|
continuationStartNonLazy, |
|
continuationAfter |
|
)(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationStartNonLazy(code) { |
|
effects.enter('lineEnding') |
|
effects.consume(code) |
|
effects.exit('lineEnding') |
|
return continuationBefore |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationBefore(code) { |
|
if (code === null || markdownLineEnding(code)) { |
|
return continuationStart(code) |
|
} |
|
effects.enter('htmlFlowData') |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationCommentInside(code) { |
|
if (code === 45) { |
|
effects.consume(code) |
|
return continuationDeclarationInside |
|
} |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationRawTagOpen(code) { |
|
if (code === 47) { |
|
effects.consume(code) |
|
buffer = '' |
|
return continuationRawEndTag |
|
} |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationRawEndTag(code) { |
|
if (code === 62) { |
|
const name = buffer.toLowerCase() |
|
if (htmlRawNames.includes(name)) { |
|
effects.consume(code) |
|
return continuationClose |
|
} |
|
return continuation(code) |
|
} |
|
if (asciiAlpha(code) && buffer.length < 8) { |
|
effects.consume(code) |
|
|
|
buffer += String.fromCharCode(code) |
|
return continuationRawEndTag |
|
} |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationCdataInside(code) { |
|
if (code === 93) { |
|
effects.consume(code) |
|
return continuationDeclarationInside |
|
} |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationDeclarationInside(code) { |
|
if (code === 62) { |
|
effects.consume(code) |
|
return continuationClose |
|
} |
|
|
|
|
|
if (code === 45 && marker === 2) { |
|
effects.consume(code) |
|
return continuationDeclarationInside |
|
} |
|
return continuation(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationClose(code) { |
|
if (code === null || markdownLineEnding(code)) { |
|
effects.exit('htmlFlowData') |
|
return continuationAfter(code) |
|
} |
|
effects.consume(code) |
|
return continuationClose |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function continuationAfter(code) { |
|
effects.exit('htmlFlow') |
|
|
|
|
|
|
|
|
|
return ok(code) |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function tokenizeNonLazyContinuationStart(effects, ok, nok) { |
|
const self = this |
|
return start |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function start(code) { |
|
if (markdownLineEnding(code)) { |
|
effects.enter('lineEnding') |
|
effects.consume(code) |
|
effects.exit('lineEnding') |
|
return after |
|
} |
|
return nok(code) |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function after(code) { |
|
return self.parser.lazy[self.now().line] ? nok(code) : ok(code) |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
function tokenizeBlankLineBefore(effects, ok, nok) { |
|
return start |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function start(code) { |
|
effects.enter('lineEnding') |
|
effects.consume(code) |
|
effects.exit('lineEnding') |
|
return effects.attempt(blankLine, ok, nok) |
|
} |
|
} |
|
|