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:
2
node_modules/mdast-util-to-string/index.d.ts
generated
vendored
Normal file
2
node_modules/mdast-util-to-string/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export {toString} from './lib/index.js'
|
||||
export type Options = import('./lib/index.js').Options
|
5
node_modules/mdast-util-to-string/index.js
generated
vendored
Normal file
5
node_modules/mdast-util-to-string/index.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/**
|
||||
* @typedef {import('./lib/index.js').Options} Options
|
||||
*/
|
||||
|
||||
export {toString} from './lib/index.js'
|
31
node_modules/mdast-util-to-string/lib/index.d.ts
generated
vendored
Normal file
31
node_modules/mdast-util-to-string/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* Get the text content of a node or list of nodes.
|
||||
*
|
||||
* Prefers the node’s plain-text fields, otherwise serializes its children,
|
||||
* and if the given value is an array, serialize the nodes in it.
|
||||
*
|
||||
* @param {unknown} [value]
|
||||
* Thing to serialize, typically `Node`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration (optional).
|
||||
* @returns {string}
|
||||
* Serialized `value`.
|
||||
*/
|
||||
export function toString(
|
||||
value?: unknown,
|
||||
options?: Options | null | undefined
|
||||
): string
|
||||
export type Nodes = import('mdast').Nodes
|
||||
/**
|
||||
* Configuration (optional).
|
||||
*/
|
||||
export type Options = {
|
||||
/**
|
||||
* Whether to use `alt` for `image`s (default: `true`).
|
||||
*/
|
||||
includeImageAlt?: boolean | null | undefined
|
||||
/**
|
||||
* Whether to use `value` of HTML (default: `true`).
|
||||
*/
|
||||
includeHtml?: boolean | null | undefined
|
||||
}
|
108
node_modules/mdast-util-to-string/lib/index.js
generated
vendored
Normal file
108
node_modules/mdast-util-to-string/lib/index.js
generated
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
/**
|
||||
* @typedef {import('mdast').Nodes} Nodes
|
||||
*
|
||||
* @typedef Options
|
||||
* Configuration (optional).
|
||||
* @property {boolean | null | undefined} [includeImageAlt=true]
|
||||
* Whether to use `alt` for `image`s (default: `true`).
|
||||
* @property {boolean | null | undefined} [includeHtml=true]
|
||||
* Whether to use `value` of HTML (default: `true`).
|
||||
*/
|
||||
|
||||
/** @type {Options} */
|
||||
const emptyOptions = {}
|
||||
|
||||
/**
|
||||
* Get the text content of a node or list of nodes.
|
||||
*
|
||||
* Prefers the node’s plain-text fields, otherwise serializes its children,
|
||||
* and if the given value is an array, serialize the nodes in it.
|
||||
*
|
||||
* @param {unknown} [value]
|
||||
* Thing to serialize, typically `Node`.
|
||||
* @param {Options | null | undefined} [options]
|
||||
* Configuration (optional).
|
||||
* @returns {string}
|
||||
* Serialized `value`.
|
||||
*/
|
||||
export function toString(value, options) {
|
||||
const settings = options || emptyOptions
|
||||
const includeImageAlt =
|
||||
typeof settings.includeImageAlt === 'boolean'
|
||||
? settings.includeImageAlt
|
||||
: true
|
||||
const includeHtml =
|
||||
typeof settings.includeHtml === 'boolean' ? settings.includeHtml : true
|
||||
|
||||
return one(value, includeImageAlt, includeHtml)
|
||||
}
|
||||
|
||||
/**
|
||||
* One node or several nodes.
|
||||
*
|
||||
* @param {unknown} value
|
||||
* Thing to serialize.
|
||||
* @param {boolean} includeImageAlt
|
||||
* Include image `alt`s.
|
||||
* @param {boolean} includeHtml
|
||||
* Include HTML.
|
||||
* @returns {string}
|
||||
* Serialized node.
|
||||
*/
|
||||
function one(value, includeImageAlt, includeHtml) {
|
||||
if (node(value)) {
|
||||
if ('value' in value) {
|
||||
return value.type === 'html' && !includeHtml ? '' : value.value
|
||||
}
|
||||
|
||||
if (includeImageAlt && 'alt' in value && value.alt) {
|
||||
return value.alt
|
||||
}
|
||||
|
||||
if ('children' in value) {
|
||||
return all(value.children, includeImageAlt, includeHtml)
|
||||
}
|
||||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
return all(value, includeImageAlt, includeHtml)
|
||||
}
|
||||
|
||||
return ''
|
||||
}
|
||||
|
||||
/**
|
||||
* Serialize a list of nodes.
|
||||
*
|
||||
* @param {Array<unknown>} values
|
||||
* Thing to serialize.
|
||||
* @param {boolean} includeImageAlt
|
||||
* Include image `alt`s.
|
||||
* @param {boolean} includeHtml
|
||||
* Include HTML.
|
||||
* @returns {string}
|
||||
* Serialized nodes.
|
||||
*/
|
||||
function all(values, includeImageAlt, includeHtml) {
|
||||
/** @type {Array<string>} */
|
||||
const result = []
|
||||
let index = -1
|
||||
|
||||
while (++index < values.length) {
|
||||
result[index] = one(values[index], includeImageAlt, includeHtml)
|
||||
}
|
||||
|
||||
return result.join('')
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if `value` looks like a node.
|
||||
*
|
||||
* @param {unknown} value
|
||||
* Thing.
|
||||
* @returns {value is Nodes}
|
||||
* Whether `value` is a node.
|
||||
*/
|
||||
function node(value) {
|
||||
return Boolean(value && typeof value === 'object')
|
||||
}
|
22
node_modules/mdast-util-to-string/license
generated
vendored
Normal file
22
node_modules/mdast-util-to-string/license
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
78
node_modules/mdast-util-to-string/package.json
generated
vendored
Normal file
78
node_modules/mdast-util-to-string/package.json
generated
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "mdast-util-to-string",
|
||||
"version": "4.0.0",
|
||||
"description": "mdast utility to get the plain text content of a node",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"unist",
|
||||
"mdast",
|
||||
"mdast-util",
|
||||
"util",
|
||||
"utility",
|
||||
"markdown",
|
||||
"node",
|
||||
"string",
|
||||
"serialize"
|
||||
],
|
||||
"repository": "syntax-tree/mdast-util-to-string",
|
||||
"bugs": "https://github.com/syntax-tree/mdast-util-to-string/issues",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/unified"
|
||||
},
|
||||
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||||
"contributors": [
|
||||
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"exports": "./index.js",
|
||||
"files": [
|
||||
"lib/",
|
||||
"index.d.ts",
|
||||
"index.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@types/mdast": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.0.0",
|
||||
"c8": "^8.0.0",
|
||||
"prettier": "^2.0.0",
|
||||
"remark-cli": "^11.0.0",
|
||||
"remark-preset-wooorm": "^9.0.0",
|
||||
"type-coverage": "^2.0.0",
|
||||
"typescript": "^5.0.0",
|
||||
"xo": "^0.54.0"
|
||||
},
|
||||
"scripts": {
|
||||
"prepack": "npm run build && npm run format",
|
||||
"build": "tsc --build --clean && tsc --build && type-coverage",
|
||||
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
|
||||
"test-api": "node --conditions development test.js",
|
||||
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
|
||||
"test": "npm run build && npm run format && npm run test-coverage"
|
||||
},
|
||||
"prettier": {
|
||||
"bracketSpacing": false,
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"tabWidth": 2,
|
||||
"trailingComma": "none",
|
||||
"useTabs": false
|
||||
},
|
||||
"remarkConfig": {
|
||||
"plugins": [
|
||||
"remark-preset-wooorm"
|
||||
]
|
||||
},
|
||||
"typeCoverage": {
|
||||
"atLeast": 100,
|
||||
"detail": true,
|
||||
"ignoreCatch": true,
|
||||
"strict": true
|
||||
},
|
||||
"xo": {
|
||||
"prettier": true
|
||||
}
|
||||
}
|
218
node_modules/mdast-util-to-string/readme.md
generated
vendored
Normal file
218
node_modules/mdast-util-to-string/readme.md
generated
vendored
Normal file
@@ -0,0 +1,218 @@
|
||||
# mdast-util-to-string
|
||||
|
||||
[![Build][build-badge]][build]
|
||||
[![Coverage][coverage-badge]][coverage]
|
||||
[![Downloads][downloads-badge]][downloads]
|
||||
[![Size][size-badge]][size]
|
||||
[![Sponsors][sponsors-badge]][collective]
|
||||
[![Backers][backers-badge]][collective]
|
||||
[![Chat][chat-badge]][chat]
|
||||
|
||||
[mdast][] utility to get the text content of a node.
|
||||
|
||||
## Contents
|
||||
|
||||
* [What is this?](#what-is-this)
|
||||
* [When should I use this?](#when-should-i-use-this)
|
||||
* [Install](#install)
|
||||
* [Use](#use)
|
||||
* [API](#api)
|
||||
* [`toString(value[, options])`](#tostringvalue-options)
|
||||
* [`Options`](#options)
|
||||
* [Types](#types)
|
||||
* [Compatibility](#compatibility)
|
||||
* [Security](#security)
|
||||
* [Related](#related)
|
||||
* [Contribute](#contribute)
|
||||
* [License](#license)
|
||||
|
||||
## What is this?
|
||||
|
||||
This package is a tiny utility that gets the textual content of a node.
|
||||
|
||||
## When should I use this?
|
||||
|
||||
This utility is useful when you have a node, say a heading, and want to get the
|
||||
text inside it.
|
||||
|
||||
This package does not serialize markdown, that’s what
|
||||
[`mdast-util-to-markdown`][mdast-util-to-markdown] does.
|
||||
|
||||
Similar packages, [`hast-util-to-string`][hast-util-to-string] and
|
||||
[`hast-util-to-text`][hast-util-to-text], do the same but on [hast][].
|
||||
|
||||
## Install
|
||||
|
||||
This package is [ESM only][esm].
|
||||
In Node.js (version 16+), install with [npm][]:
|
||||
|
||||
```sh
|
||||
npm install mdast-util-to-string
|
||||
```
|
||||
|
||||
In Deno with [`esm.sh`][esmsh]:
|
||||
|
||||
```js
|
||||
import {toString} from 'https://esm.sh/mdast-util-to-string@4'
|
||||
```
|
||||
|
||||
In browsers with [`esm.sh`][esmsh]:
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import {toString} from 'https://esm.sh/mdast-util-to-string@4?bundle'
|
||||
</script>
|
||||
```
|
||||
|
||||
## Use
|
||||
|
||||
```js
|
||||
import {fromMarkdown} from 'mdast-util-from-markdown'
|
||||
import {toString} from 'mdast-util-to-string'
|
||||
|
||||
const tree = fromMarkdown('Some _emphasis_, **importance**, and `code`.')
|
||||
|
||||
console.log(toString(tree)) // => 'Some emphasis, importance, and code.'
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
This package exports the identifier [`toString`][api-to-string].
|
||||
There is no default export.
|
||||
|
||||
### `toString(value[, options])`
|
||||
|
||||
Get the text content of a node or list of nodes.
|
||||
|
||||
Prefers the node’s plain-text fields, otherwise serializes its children,
|
||||
and if the given value is an array, serialize the nodes in it.
|
||||
|
||||
###### Parameters
|
||||
|
||||
* `value` (`unknown`)
|
||||
— thing to serialize, typically [`Node`][node]
|
||||
* `options` ([`Options`][api-options], optional)
|
||||
— configuration
|
||||
|
||||
###### Returns
|
||||
|
||||
Serialized `value` (`string`).
|
||||
|
||||
### `Options`
|
||||
|
||||
Configuration (TypeScript type).
|
||||
|
||||
###### Fields
|
||||
|
||||
* `includeImageAlt` (`boolean`, default: `true`)
|
||||
— whether to use `alt` for `image`s
|
||||
* `includeHtml` (`boolean`, default: `true`)
|
||||
— whether to use `value` of HTML
|
||||
|
||||
## Types
|
||||
|
||||
This package is fully typed with [TypeScript][].
|
||||
It exports the additional type [`Options`][api-options].
|
||||
|
||||
## Compatibility
|
||||
|
||||
Projects maintained by the unified collective are compatible with maintained
|
||||
versions of Node.js.
|
||||
|
||||
When we cut a new major release, we drop support for unmaintained versions of
|
||||
Node.
|
||||
This means we try to keep the current release line, `mdast-util-to-string@^4`,
|
||||
compatible with Node.js 16.
|
||||
|
||||
## Security
|
||||
|
||||
Use of `mdast-util-to-string` does not involve **[hast][]**, user content, or
|
||||
change the tree, so there are no openings for [cross-site scripting (XSS)][xss]
|
||||
attacks.
|
||||
|
||||
## Related
|
||||
|
||||
* [`hast-util-to-string`](https://github.com/wooorm/rehype-minify/tree/main/packages/hast-util-to-string)
|
||||
— get text content in hast
|
||||
* [`hast-util-to-text`](https://github.com/syntax-tree/hast-util-to-text)
|
||||
— get text content in hast according to the `innerText` algorithm
|
||||
|
||||
## Contribute
|
||||
|
||||
See [`contributing.md`][contributing] in [`syntax-tree/.github`][health] for
|
||||
ways to get started.
|
||||
See [`support.md`][support] for ways to get help.
|
||||
|
||||
This project has a [code of conduct][coc].
|
||||
By interacting with this repository, organization, or community you agree to
|
||||
abide by its terms.
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://github.com/syntax-tree/mdast-util-to-string/workflows/main/badge.svg
|
||||
|
||||
[build]: https://github.com/syntax-tree/mdast-util-to-string/actions
|
||||
|
||||
[coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-util-to-string.svg
|
||||
|
||||
[coverage]: https://codecov.io/github/syntax-tree/mdast-util-to-string
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/mdast-util-to-string.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/mdast-util-to-string
|
||||
|
||||
[size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=mdast-util-to-string
|
||||
|
||||
[size]: https://bundlejs.com/?q=mdast-util-to-string
|
||||
|
||||
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
|
||||
|
||||
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
|
||||
|
||||
[collective]: https://opencollective.com/unified
|
||||
|
||||
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
|
||||
|
||||
[chat]: https://github.com/syntax-tree/unist/discussions
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
|
||||
|
||||
[esmsh]: https://esm.sh
|
||||
|
||||
[typescript]: https://www.typescriptlang.org
|
||||
|
||||
[license]: license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[health]: https://github.com/syntax-tree/.github
|
||||
|
||||
[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md
|
||||
|
||||
[support]: https://github.com/syntax-tree/.github/blob/main/support.md
|
||||
|
||||
[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
|
||||
|
||||
[mdast]: https://github.com/syntax-tree/mdast
|
||||
|
||||
[mdast-util-to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown
|
||||
|
||||
[hast]: https://github.com/syntax-tree/hast
|
||||
|
||||
[hast-util-to-string]: https://github.com/rehypejs/rehype-minify/tree/main/packages/hast-util-to-string
|
||||
|
||||
[hast-util-to-text]: https://github.com/syntax-tree/hast-util-to-text
|
||||
|
||||
[node]: https://github.com/syntax-tree/mdast#nodes
|
||||
|
||||
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
|
||||
|
||||
[api-to-string]: #tostringvalue-options
|
||||
|
||||
[api-options]: #options
|
Reference in New Issue
Block a user