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:
11
node_modules/rehype/index.d.ts
generated
vendored
Normal file
11
node_modules/rehype/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/// <reference types="rehype-parse" />
|
||||
/// <reference types="rehype-stringify" />
|
||||
|
||||
import type {Root} from 'hast'
|
||||
import type {Processor} from 'unified'
|
||||
|
||||
/**
|
||||
* Create a new unified processor that already uses `rehype-parse` and
|
||||
* `rehype-stringify`.
|
||||
*/
|
||||
export const rehype: Processor<Root, undefined, undefined, Root, string>
|
10
node_modules/rehype/index.js
generated
vendored
Normal file
10
node_modules/rehype/index.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// Note: types exposed from `index.d.ts`
|
||||
import rehypeParse from 'rehype-parse'
|
||||
import rehypeStringify from 'rehype-stringify'
|
||||
import {unified} from 'unified'
|
||||
|
||||
/**
|
||||
* Create a new unified processor that already uses `rehype-parse` and
|
||||
* `rehype-stringify`.
|
||||
*/
|
||||
export const rehype = unified().use(rehypeParse).use(rehypeStringify).freeze()
|
21
node_modules/rehype/license
generated
vendored
Normal file
21
node_modules/rehype/license
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) Titus Wormer
|
||||
|
||||
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.
|
50
node_modules/rehype/package.json
generated
vendored
Normal file
50
node_modules/rehype/package.json
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "rehype",
|
||||
"version": "13.0.2",
|
||||
"description": "HTML processor powered by plugins part of the unified collective",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"abstract",
|
||||
"ast",
|
||||
"html",
|
||||
"parse",
|
||||
"process",
|
||||
"rehype",
|
||||
"serialize",
|
||||
"stringify",
|
||||
"syntax",
|
||||
"tree",
|
||||
"unified"
|
||||
],
|
||||
"dependencies": {
|
||||
"@types/hast": "^3.0.0",
|
||||
"rehype-parse": "^9.0.0",
|
||||
"rehype-stringify": "^10.0.0",
|
||||
"unified": "^11.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/rehypejs/rehype",
|
||||
"repository": "https://github.com/rehypejs/rehype/tree/main/packages/rehype",
|
||||
"bugs": "https://github.com/rehypejs/rehype/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": [
|
||||
"index.d.ts",
|
||||
"index.js"
|
||||
],
|
||||
"scripts": {},
|
||||
"typeCoverage": {
|
||||
"atLeast": 100,
|
||||
"detail": true,
|
||||
"strict": true,
|
||||
"ignoreCatch": true
|
||||
}
|
||||
}
|
354
node_modules/rehype/readme.md
generated
vendored
Normal file
354
node_modules/rehype/readme.md
generated
vendored
Normal file
@@ -0,0 +1,354 @@
|
||||
# rehype
|
||||
|
||||
[![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]
|
||||
|
||||
**[unified][]** processor to add support for parsing from HTML and serializing
|
||||
to HTML.
|
||||
|
||||
## Contents
|
||||
|
||||
* [What is this?](#what-is-this)
|
||||
* [When should I use this?](#when-should-i-use-this)
|
||||
* [Install](#install)
|
||||
* [Use](#use)
|
||||
* [API](#api)
|
||||
* [`rehype()`](#rehype-1)
|
||||
* [Examples](#examples)
|
||||
* [Example: passing options to `rehype-parse`, `rehype-stringify`](#example-passing-options-to-rehype-parse-rehype-stringify)
|
||||
* [Syntax](#syntax)
|
||||
* [Syntax tree](#syntax-tree)
|
||||
* [Types](#types)
|
||||
* [Compatibility](#compatibility)
|
||||
* [Security](#security)
|
||||
* [Contribute](#contribute)
|
||||
* [Sponsor](#sponsor)
|
||||
* [License](#license)
|
||||
|
||||
## What is this?
|
||||
|
||||
This package is a [unified][] processor with support for parsing HTML as input
|
||||
and serializing HTML as output by using unified with
|
||||
[`rehype-parse`][rehype-parse] and [`rehype-stringify`][rehype-stringify].
|
||||
|
||||
See [the monorepo readme][rehype] for info on what the rehype ecosystem is.
|
||||
|
||||
## When should I use this?
|
||||
|
||||
You can use this package when you want to use unified, have HTML as input, and
|
||||
want HTML as output.
|
||||
This package is a shortcut for
|
||||
`unified().use(rehypeParse).use(rehypeStringify)`.
|
||||
When the input isn’t HTML (meaning you don’t need `rehype-parse`) or the
|
||||
output is not HTML (you don’t need `rehype-stringify`), it’s recommended to
|
||||
use `unified` directly.
|
||||
|
||||
When you’re in a browser, trust your content, don’t need positional info on
|
||||
nodes or formatting options, and value a smaller bundle size, you can use
|
||||
[`rehype-dom`][rehype-dom] instead.
|
||||
|
||||
When you want to inspect and format HTML files in a project on the command
|
||||
line, you can use [`rehype-cli`][rehype-cli].
|
||||
|
||||
## Install
|
||||
|
||||
This package is [ESM only][esm].
|
||||
In Node.js (version 16+), install with [npm][]:
|
||||
|
||||
```sh
|
||||
npm install rehype
|
||||
```
|
||||
|
||||
In Deno with [`esm.sh`][esmsh]:
|
||||
|
||||
```js
|
||||
import {rehype} from 'https://esm.sh/rehype@13'
|
||||
```
|
||||
|
||||
In browsers with [`esm.sh`][esmsh]:
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import {rehype} from 'https://esm.sh/rehype@13?bundle'
|
||||
</script>
|
||||
```
|
||||
|
||||
## Use
|
||||
|
||||
Say we have the following module `example.js`:
|
||||
|
||||
```js
|
||||
import {rehype} from 'rehype'
|
||||
import rehypeFormat from 'rehype-format'
|
||||
|
||||
const file = await rehype().use(rehypeFormat).process(`<!doctype html>
|
||||
<html lang=en>
|
||||
<head>
|
||||
<title>Hi!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello!</h1>
|
||||
|
||||
</body></html>`)
|
||||
|
||||
console.error(String(file))
|
||||
```
|
||||
|
||||
…running that with `node example.js` yields:
|
||||
|
||||
```html
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Hi!</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello!</h1>
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
This package exports the identifier [`rehype`][api-rehype].
|
||||
There is no default export.
|
||||
|
||||
### `rehype()`
|
||||
|
||||
Create a new unified processor that already uses
|
||||
[`rehype-parse`][rehype-parse] and [`rehype-stringify`][rehype-stringify].
|
||||
|
||||
You can add more plugins with `use`.
|
||||
See [`unified`][unified] for more information.
|
||||
|
||||
## Examples
|
||||
|
||||
### Example: passing options to `rehype-parse`, `rehype-stringify`
|
||||
|
||||
When you use `rehype-parse` or `rehype-stringify` manually you can pass options
|
||||
directly to them with `use`.
|
||||
Because both plugins are already used in `rehype`, that’s not possible.
|
||||
To define options for them, you can instead pass options to `data`:
|
||||
|
||||
```js
|
||||
import {rehype} from 'rehype'
|
||||
import {reporter} from 'vfile-reporter'
|
||||
|
||||
const file = await rehype()
|
||||
.data('settings', {
|
||||
emitParseErrors: true,
|
||||
fragment: true,
|
||||
preferUnquoted: true
|
||||
})
|
||||
.process('<div title="a" title="b"></div>')
|
||||
|
||||
console.error(reporter(file))
|
||||
console.log(String(file))
|
||||
```
|
||||
|
||||
…yields:
|
||||
|
||||
```txt
|
||||
1:21-1:21 warning Unexpected duplicate attribute duplicate-attribute hast-util-from-html
|
||||
|
||||
⚠ 1 warning
|
||||
```
|
||||
|
||||
```html
|
||||
<div title=a></div>
|
||||
```
|
||||
|
||||
## Syntax
|
||||
|
||||
HTML is parsed and serialized according to WHATWG HTML (the living standard),
|
||||
which is also followed by all browsers.
|
||||
|
||||
## Syntax tree
|
||||
|
||||
The syntax tree format used in rehype is [hast][].
|
||||
|
||||
## Types
|
||||
|
||||
This package is fully typed with [TypeScript][].
|
||||
It exports no additional types.
|
||||
|
||||
## 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, `rehype@^13`, compatible
|
||||
with Node.js 16.
|
||||
|
||||
## Security
|
||||
|
||||
As **rehype** works on HTML, and improper use of HTML can open you up to a
|
||||
[cross-site scripting (XSS)][xss] attack, use of rehype can also be unsafe.
|
||||
Use [`rehype-sanitize`][rehype-sanitize] to make the tree safe.
|
||||
|
||||
Use of rehype plugins could also open you up to other attacks.
|
||||
Carefully assess each plugin and the risks involved in using them.
|
||||
|
||||
For info on how to submit a report, see our [security policy][security].
|
||||
|
||||
## Contribute
|
||||
|
||||
See [`contributing.md`][contributing] in [`rehypejs/.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.
|
||||
|
||||
## Sponsor
|
||||
|
||||
Support this effort and give back by sponsoring on [OpenCollective][collective]!
|
||||
|
||||
<table>
|
||||
<tr valign="middle">
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://vercel.com">Vercel</a><br><br>
|
||||
<a href="https://vercel.com"><img src="https://avatars1.githubusercontent.com/u/14985020?s=256&v=4" width="128"></a>
|
||||
</td>
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://motif.land">Motif</a><br><br>
|
||||
<a href="https://motif.land"><img src="https://avatars1.githubusercontent.com/u/74457950?s=256&v=4" width="128"></a>
|
||||
</td>
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://www.hashicorp.com">HashiCorp</a><br><br>
|
||||
<a href="https://www.hashicorp.com"><img src="https://avatars1.githubusercontent.com/u/761456?s=256&v=4" width="128"></a>
|
||||
</td>
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://www.gitbook.com">GitBook</a><br><br>
|
||||
<a href="https://www.gitbook.com"><img src="https://avatars1.githubusercontent.com/u/7111340?s=256&v=4" width="128"></a>
|
||||
</td>
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://www.gatsbyjs.org">Gatsby</a><br><br>
|
||||
<a href="https://www.gatsbyjs.org"><img src="https://avatars1.githubusercontent.com/u/12551863?s=256&v=4" width="128"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="middle">
|
||||
</tr>
|
||||
<tr valign="middle">
|
||||
<td width="20%" align="center" rowspan="2" colspan="2">
|
||||
<a href="https://www.netlify.com">Netlify</a><br><br>
|
||||
<!--OC has a sharper image-->
|
||||
<a href="https://www.netlify.com"><img src="https://images.opencollective.com/netlify/4087de2/logo/256.png" width="128"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://www.coinbase.com">Coinbase</a><br><br>
|
||||
<a href="https://www.coinbase.com"><img src="https://avatars1.githubusercontent.com/u/1885080?s=256&v=4" width="64"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://themeisle.com">ThemeIsle</a><br><br>
|
||||
<a href="https://themeisle.com"><img src="https://avatars1.githubusercontent.com/u/58979018?s=128&v=4" width="64"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://expo.io">Expo</a><br><br>
|
||||
<a href="https://expo.io"><img src="https://avatars1.githubusercontent.com/u/12504344?s=128&v=4" width="64"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://boostnote.io">Boost Note</a><br><br>
|
||||
<a href="https://boostnote.io"><img src="https://images.opencollective.com/boosthub/6318083/logo/128.png" width="64"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://markdown.space">Markdown Space</a><br><br>
|
||||
<a href="https://markdown.space"><img src="https://images.opencollective.com/markdown-space/e1038ed/logo/128.png" width="64"></a>
|
||||
</td>
|
||||
<td width="10%" align="center">
|
||||
<a href="https://www.holloway.com">Holloway</a><br><br>
|
||||
<a href="https://www.holloway.com"><img src="https://avatars1.githubusercontent.com/u/35904294?s=128&v=4" width="64"></a>
|
||||
</td>
|
||||
<td width="10%"></td>
|
||||
<td width="10%"></td>
|
||||
</tr>
|
||||
<tr valign="middle">
|
||||
<td width="100%" align="center" colspan="8">
|
||||
<br>
|
||||
<a href="https://opencollective.com/unified"><strong>You?</strong></a>
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://github.com/rehypejs/rehype/workflows/main/badge.svg
|
||||
|
||||
[build]: https://github.com/rehypejs/rehype/actions
|
||||
|
||||
[coverage-badge]: https://img.shields.io/codecov/c/github/rehypejs/rehype.svg
|
||||
|
||||
[coverage]: https://codecov.io/github/rehypejs/rehype
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/rehype.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/rehype
|
||||
|
||||
[size-badge]: https://img.shields.io/bundlejs/size/rehype
|
||||
|
||||
[size]: https://bundlejs.com/?q=rehype
|
||||
|
||||
[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/rehypejs/rehype/discussions
|
||||
|
||||
[health]: https://github.com/rehypejs/.github
|
||||
|
||||
[security]: https://github.com/rehypejs/.github/blob/main/security.md
|
||||
|
||||
[contributing]: https://github.com/rehypejs/.github/blob/main/contributing.md
|
||||
|
||||
[support]: https://github.com/rehypejs/.github/blob/main/support.md
|
||||
|
||||
[coc]: https://github.com/rehypejs/.github/blob/main/code-of-conduct.md
|
||||
|
||||
[license]: https://github.com/rehypejs/rehype/blob/main/license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[esmsh]: https://esm.sh
|
||||
|
||||
[unified]: https://github.com/unifiedjs/unified
|
||||
|
||||
[rehype]: https://github.com/rehypejs/rehype
|
||||
|
||||
[hast]: https://github.com/syntax-tree/hast
|
||||
|
||||
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
|
||||
|
||||
[typescript]: https://www.typescriptlang.org
|
||||
|
||||
[rehype-parse]: ../rehype-parse/
|
||||
|
||||
[rehype-stringify]: ../rehype-stringify/
|
||||
|
||||
[rehype-cli]: ../rehype-cli/
|
||||
|
||||
[rehype-sanitize]: https://github.com/rehypejs/rehype-sanitize
|
||||
|
||||
[rehype-dom]: https://github.com/rehypejs/rehype-dom/tree/main/packages/rehype-dom
|
||||
|
||||
[api-rehype]: #rehype-1
|
Reference in New Issue
Block a user