Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
69
node_modules/mdast-util-to-markdown/lib/handle/strong.js
generated
vendored
Normal file
69
node_modules/mdast-util-to-markdown/lib/handle/strong.js
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
/**
|
||||
* @import {Info, State} from 'mdast-util-to-markdown'
|
||||
* @import {Parents, Strong} from 'mdast'
|
||||
*/
|
||||
|
||||
import {checkStrong} from '../util/check-strong.js'
|
||||
import {encodeCharacterReference} from '../util/encode-character-reference.js'
|
||||
import {encodeInfo} from '../util/encode-info.js'
|
||||
|
||||
strong.peek = strongPeek
|
||||
|
||||
/**
|
||||
* @param {Strong} node
|
||||
* @param {Parents | undefined} _
|
||||
* @param {State} state
|
||||
* @param {Info} info
|
||||
* @returns {string}
|
||||
*/
|
||||
export function strong(node, _, state, info) {
|
||||
const marker = checkStrong(state)
|
||||
const exit = state.enter('strong')
|
||||
const tracker = state.createTracker(info)
|
||||
const before = tracker.move(marker + marker)
|
||||
|
||||
let between = tracker.move(
|
||||
state.containerPhrasing(node, {
|
||||
after: marker,
|
||||
before,
|
||||
...tracker.current()
|
||||
})
|
||||
)
|
||||
const betweenHead = between.charCodeAt(0)
|
||||
const open = encodeInfo(
|
||||
info.before.charCodeAt(info.before.length - 1),
|
||||
betweenHead,
|
||||
marker
|
||||
)
|
||||
|
||||
if (open.inside) {
|
||||
between = encodeCharacterReference(betweenHead) + between.slice(1)
|
||||
}
|
||||
|
||||
const betweenTail = between.charCodeAt(between.length - 1)
|
||||
const close = encodeInfo(info.after.charCodeAt(0), betweenTail, marker)
|
||||
|
||||
if (close.inside) {
|
||||
between = between.slice(0, -1) + encodeCharacterReference(betweenTail)
|
||||
}
|
||||
|
||||
const after = tracker.move(marker + marker)
|
||||
|
||||
exit()
|
||||
|
||||
state.attentionEncodeSurroundingInfo = {
|
||||
after: close.outside,
|
||||
before: open.outside
|
||||
}
|
||||
return before + between + after
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Strong} _
|
||||
* @param {Parents | undefined} _1
|
||||
* @param {State} state
|
||||
* @returns {string}
|
||||
*/
|
||||
function strongPeek(_, _1, state) {
|
||||
return state.options.strong || '*'
|
||||
}
|
Reference in New Issue
Block a user