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:
35
node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
generated
vendored
Normal file
35
node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* @typedef {import('hast').Element} Element
|
||||
* @typedef {import('hast').Text} Text
|
||||
* @typedef {import('mdast').InlineCode} InlineCode
|
||||
* @typedef {import('../state.js').State} State
|
||||
*/
|
||||
|
||||
// Make VS Code show references to the above types.
|
||||
''
|
||||
|
||||
/**
|
||||
* Turn an mdast `inlineCode` node into hast.
|
||||
*
|
||||
* @param {State} state
|
||||
* Info passed around.
|
||||
* @param {InlineCode} node
|
||||
* mdast node.
|
||||
* @returns {Element}
|
||||
* hast node.
|
||||
*/
|
||||
export function inlineCode(state, node) {
|
||||
/** @type {Text} */
|
||||
const text = {type: 'text', value: node.value.replace(/\r?\n|\r/g, ' ')}
|
||||
state.patch(node, text)
|
||||
|
||||
/** @type {Element} */
|
||||
const result = {
|
||||
type: 'element',
|
||||
tagName: 'code',
|
||||
properties: {},
|
||||
children: [text]
|
||||
}
|
||||
state.patch(node, result)
|
||||
return state.applyData(node, result)
|
||||
}
|
Reference in New Issue
Block a user