🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
24
node_modules/mdast-util-gfm-footnote/lib/index.d.ts
generated
vendored
Normal file
24
node_modules/mdast-util-gfm-footnote/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* Create an extension for `mdast-util-from-markdown` to enable GFM footnotes
|
||||
* in markdown.
|
||||
*
|
||||
* @returns {FromMarkdownExtension}
|
||||
* Extension for `mdast-util-from-markdown`.
|
||||
*/
|
||||
export function gfmFootnoteFromMarkdown(): FromMarkdownExtension
|
||||
/**
|
||||
* Create an extension for `mdast-util-to-markdown` to enable GFM footnotes
|
||||
* in markdown.
|
||||
*
|
||||
* @returns {ToMarkdownExtension}
|
||||
* Extension for `mdast-util-to-markdown`.
|
||||
*/
|
||||
export function gfmFootnoteToMarkdown(): ToMarkdownExtension
|
||||
export type FootnoteReference = import('mdast').FootnoteReference
|
||||
export type FootnoteDefinition = import('mdast').FootnoteDefinition
|
||||
export type CompileContext = import('mdast-util-from-markdown').CompileContext
|
||||
export type FromMarkdownExtension = import('mdast-util-from-markdown').Extension
|
||||
export type FromMarkdownHandle = import('mdast-util-from-markdown').Handle
|
||||
export type ToMarkdownExtension = import('mdast-util-to-markdown').Options
|
||||
export type ToMarkdownHandle = import('mdast-util-to-markdown').Handle
|
||||
export type Map = import('mdast-util-to-markdown').Map
|
||||
207
node_modules/mdast-util-gfm-footnote/lib/index.js
generated
vendored
Normal file
207
node_modules/mdast-util-gfm-footnote/lib/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
/**
|
||||
* @typedef {import('mdast').FootnoteReference} FootnoteReference
|
||||
* @typedef {import('mdast').FootnoteDefinition} FootnoteDefinition
|
||||
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
||||
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
||||
* @typedef {import('mdast-util-from-markdown').Handle} FromMarkdownHandle
|
||||
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownExtension
|
||||
* @typedef {import('mdast-util-to-markdown').Handle} ToMarkdownHandle
|
||||
* @typedef {import('mdast-util-to-markdown').Map} Map
|
||||
*/
|
||||
|
||||
import {normalizeIdentifier} from 'micromark-util-normalize-identifier'
|
||||
import {association} from 'mdast-util-to-markdown/lib/util/association.js'
|
||||
import {containerFlow} from 'mdast-util-to-markdown/lib/util/container-flow.js'
|
||||
import {indentLines} from 'mdast-util-to-markdown/lib/util/indent-lines.js'
|
||||
import {safe} from 'mdast-util-to-markdown/lib/util/safe.js'
|
||||
import {track} from 'mdast-util-to-markdown/lib/util/track.js'
|
||||
|
||||
footnoteReference.peek = footnoteReferencePeek
|
||||
|
||||
// To do: next major: rename `context` -> `state`, `safeOptions` to `info`, use
|
||||
// utilities on `state`.
|
||||
|
||||
/**
|
||||
* Create an extension for `mdast-util-from-markdown` to enable GFM footnotes
|
||||
* in markdown.
|
||||
*
|
||||
* @returns {FromMarkdownExtension}
|
||||
* Extension for `mdast-util-from-markdown`.
|
||||
*/
|
||||
export function gfmFootnoteFromMarkdown() {
|
||||
return {
|
||||
enter: {
|
||||
gfmFootnoteDefinition: enterFootnoteDefinition,
|
||||
gfmFootnoteDefinitionLabelString: enterFootnoteDefinitionLabelString,
|
||||
gfmFootnoteCall: enterFootnoteCall,
|
||||
gfmFootnoteCallString: enterFootnoteCallString
|
||||
},
|
||||
exit: {
|
||||
gfmFootnoteDefinition: exitFootnoteDefinition,
|
||||
gfmFootnoteDefinitionLabelString: exitFootnoteDefinitionLabelString,
|
||||
gfmFootnoteCall: exitFootnoteCall,
|
||||
gfmFootnoteCallString: exitFootnoteCallString
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an extension for `mdast-util-to-markdown` to enable GFM footnotes
|
||||
* in markdown.
|
||||
*
|
||||
* @returns {ToMarkdownExtension}
|
||||
* Extension for `mdast-util-to-markdown`.
|
||||
*/
|
||||
export function gfmFootnoteToMarkdown() {
|
||||
return {
|
||||
// This is on by default already.
|
||||
unsafe: [{character: '[', inConstruct: ['phrasing', 'label', 'reference']}],
|
||||
handlers: {footnoteDefinition, footnoteReference}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function enterFootnoteDefinition(token) {
|
||||
this.enter(
|
||||
{type: 'footnoteDefinition', identifier: '', label: '', children: []},
|
||||
token
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function enterFootnoteDefinitionLabelString() {
|
||||
this.buffer()
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function exitFootnoteDefinitionLabelString(token) {
|
||||
const label = this.resume()
|
||||
const node = /** @type {FootnoteDefinition} */ (
|
||||
this.stack[this.stack.length - 1]
|
||||
)
|
||||
node.label = label
|
||||
node.identifier = normalizeIdentifier(
|
||||
this.sliceSerialize(token)
|
||||
).toLowerCase()
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function exitFootnoteDefinition(token) {
|
||||
this.exit(token)
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function enterFootnoteCall(token) {
|
||||
this.enter({type: 'footnoteReference', identifier: '', label: ''}, token)
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function enterFootnoteCallString() {
|
||||
this.buffer()
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function exitFootnoteCallString(token) {
|
||||
const label = this.resume()
|
||||
const node = /** @type {FootnoteDefinition} */ (
|
||||
this.stack[this.stack.length - 1]
|
||||
)
|
||||
node.label = label
|
||||
node.identifier = normalizeIdentifier(
|
||||
this.sliceSerialize(token)
|
||||
).toLowerCase()
|
||||
}
|
||||
|
||||
/**
|
||||
* @this {CompileContext}
|
||||
* @type {FromMarkdownHandle}
|
||||
*/
|
||||
function exitFootnoteCall(token) {
|
||||
this.exit(token)
|
||||
}
|
||||
|
||||
/**
|
||||
* @type {ToMarkdownHandle}
|
||||
* @param {FootnoteReference} node
|
||||
*/
|
||||
function footnoteReference(node, _, context, safeOptions) {
|
||||
const tracker = track(safeOptions)
|
||||
let value = tracker.move('[^')
|
||||
const exit = context.enter('footnoteReference')
|
||||
const subexit = context.enter('reference')
|
||||
value += tracker.move(
|
||||
safe(context, association(node), {
|
||||
...tracker.current(),
|
||||
before: value,
|
||||
after: ']'
|
||||
})
|
||||
)
|
||||
subexit()
|
||||
exit()
|
||||
value += tracker.move(']')
|
||||
return value
|
||||
}
|
||||
|
||||
/** @type {ToMarkdownHandle} */
|
||||
function footnoteReferencePeek() {
|
||||
return '['
|
||||
}
|
||||
|
||||
/**
|
||||
* @type {ToMarkdownHandle}
|
||||
* @param {FootnoteDefinition} node
|
||||
*/
|
||||
function footnoteDefinition(node, _, context, safeOptions) {
|
||||
const tracker = track(safeOptions)
|
||||
let value = tracker.move('[^')
|
||||
const exit = context.enter('footnoteDefinition')
|
||||
const subexit = context.enter('label')
|
||||
value += tracker.move(
|
||||
safe(context, association(node), {
|
||||
...tracker.current(),
|
||||
before: value,
|
||||
after: ']'
|
||||
})
|
||||
)
|
||||
subexit()
|
||||
value += tracker.move(
|
||||
']:' + (node.children && node.children.length > 0 ? ' ' : '')
|
||||
)
|
||||
tracker.shift(4)
|
||||
value += tracker.move(
|
||||
indentLines(containerFlow(node, context, tracker.current()), map)
|
||||
)
|
||||
exit()
|
||||
|
||||
return value
|
||||
}
|
||||
|
||||
/** @type {Map} */
|
||||
function map(line, index, blank) {
|
||||
if (index === 0) {
|
||||
return line
|
||||
}
|
||||
|
||||
return (blank ? '' : ' ') + line
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue