mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 20:19:29 +08:00
27 lines
849 B
Text
27 lines
849 B
Text
/**
|
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
* @typedef {import('micromark-util-types').Tokenizer} Tokenizer
|
|
* @typedef {import('micromark-util-types').State} State
|
|
*/
|
|
|
|
import {ok as assert} from 'uvu/assert'
|
|
import {factorySpace} from 'micromark-factory-space'
|
|
import {markdownLineEnding} from 'micromark-util-character'
|
|
import {types} from 'micromark-util-symbol/types.js'
|
|
|
|
/** @type {Construct} */
|
|
export const lineEnding = {name: 'lineEnding', tokenize: tokenizeLineEnding}
|
|
|
|
/** @type {Tokenizer} */
|
|
function tokenizeLineEnding(effects, ok) {
|
|
return start
|
|
|
|
/** @type {State} */
|
|
function start(code) {
|
|
assert(markdownLineEnding(code), 'expected eol')
|
|
effects.enter(types.lineEnding)
|
|
effects.consume(code)
|
|
effects.exit(types.lineEnding)
|
|
return factorySpace(effects, ok, types.linePrefix)
|
|
}
|
|
}
|