mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 17:09:30 +08:00
65 lines
1.7 KiB
Text
65 lines
1.7 KiB
Text
/**
|
||
* @typedef {import('mdast').LinkReference} LinkReference
|
||
* @typedef {import('../types.js').Handle} Handle
|
||
*/
|
||
|
||
import {association} from '../util/association.js'
|
||
import {containerPhrasing} from '../util/container-phrasing.js'
|
||
import {safe} from '../util/safe.js'
|
||
import {track} from '../util/track.js'
|
||
|
||
linkReference.peek = linkReferencePeek
|
||
|
||
/**
|
||
* @type {Handle}
|
||
* @param {LinkReference} node
|
||
*/
|
||
export function linkReference(node, _, context, safeOptions) {
|
||
const type = node.referenceType
|
||
const exit = context.enter('linkReference')
|
||
let subexit = context.enter('label')
|
||
const tracker = track(safeOptions)
|
||
let value = tracker.move('[')
|
||
const text = containerPhrasing(node, context, {
|
||
before: value,
|
||
after: ']',
|
||
...tracker.current()
|
||
})
|
||
value += tracker.move(text + '][')
|
||
|
||
subexit()
|
||
// Hide the fact that we’re in phrasing, because escapes don’t work.
|
||
const stack = context.stack
|
||
context.stack = []
|
||
subexit = context.enter('reference')
|
||
// Note: for proper tracking, we should reset the output positions when we end
|
||
// up making a `shortcut` reference, because then there is no brace output.
|
||
// Practically, in that case, there is no content, so it doesn’t matter that
|
||
// we’ve tracked one too many characters.
|
||
const reference = safe(context, association(node), {
|
||
before: value,
|
||
after: ']',
|
||
...tracker.current()
|
||
})
|
||
subexit()
|
||
context.stack = stack
|
||
exit()
|
||
|
||
if (type === 'full' || !text || text !== reference) {
|
||
value += tracker.move(reference + ']')
|
||
} else if (type === 'shortcut') {
|
||
// Remove the unwanted `[`.
|
||
value = value.slice(0, -1)
|
||
} else {
|
||
value += tracker.move(']')
|
||
}
|
||
|
||
return value
|
||
}
|
||
|
||
/**
|
||
* @type {Handle}
|
||
*/
|
||
function linkReferencePeek() {
|
||
return '['
|
||
}
|