🎉 initiate project *astro_rewrite*

This commit is contained in:
sindrekjelsrud 2023-07-19 21:31:30 +02:00
parent ffd4d5e86c
commit 2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions

15
node_modules/remark-frontmatter/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,15 @@
/**
* Plugin to add support for frontmatter.
*
* @type {import('unified').Plugin<[Options?]|void[], Root>}
*/
export default function remarkFrontmatter(
options?:
| void
| import('micromark-extension-frontmatter/matters').Options
| undefined
):
| void
| import('unified').Transformer<import('mdast').Root, import('mdast').Root>
export type Root = import('mdast').Root
export type Options = import('micromark-extension-frontmatter').Options

37
node_modules/remark-frontmatter/index.js generated vendored Normal file
View file

@ -0,0 +1,37 @@
/**
* @typedef {import('mdast').Root} Root
* @typedef {import('micromark-extension-frontmatter').Options} Options
*/
import {frontmatter} from 'micromark-extension-frontmatter'
import {
frontmatterFromMarkdown,
frontmatterToMarkdown
} from 'mdast-util-frontmatter'
/**
* Plugin to add support for frontmatter.
*
* @type {import('unified').Plugin<[Options?]|void[], Root>}
*/
export default function remarkFrontmatter(options = 'yaml') {
const data = this.data()
add('micromarkExtensions', frontmatter(options))
add('fromMarkdownExtensions', frontmatterFromMarkdown(options))
add('toMarkdownExtensions', frontmatterToMarkdown(options))
/**
* @param {string} field
* @param {unknown} value
*/
function add(field, value) {
const list = /** @type {unknown[]} */ (
// Other extensions
/* c8 ignore next 2 */
data[field] ? data[field] : (data[field] = [])
)
list.push(value)
}
}

22
node_modules/remark-frontmatter/license generated vendored Normal file
View file

@ -0,0 +1,22 @@
(The MIT License)
Copyright (c) 2017 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.

97
node_modules/remark-frontmatter/package.json generated vendored Normal file
View file

@ -0,0 +1,97 @@
{
"name": "remark-frontmatter",
"version": "4.0.1",
"description": "remark plugin to support frontmatter (yaml, toml, and more)",
"license": "MIT",
"keywords": [
"unified",
"remark",
"remark-plugin",
"plugin",
"mdast",
"markdown",
"frontmatter",
"yaml",
"toml"
],
"repository": "remarkjs/remark-frontmatter",
"bugs": "https://github.com/remarkjs/remark-frontmatter/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)",
"Lars Trieloff <lars@trieloff.net>",
"Max Kueng <me@maxkueng.com>"
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/mdast": "^3.0.0",
"mdast-util-frontmatter": "^1.0.0",
"micromark-extension-frontmatter": "^1.0.0",
"unified": "^10.0.0"
},
"devDependencies": {
"@types/tape": "^4.0.0",
"c8": "^7.0.0",
"is-hidden": "^2.0.0",
"prettier": "^2.0.0",
"remark": "^14.0.0",
"remark-cli": "^10.0.0",
"remark-preset-wooorm": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"to-vfile": "^7.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"xo": "^0.45.0"
},
"scripts": {
"build": "rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"format": "remark . -qfo --ignore-pattern test/ && prettier . -w --loglevel warn && xo --fix",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"ignores": [
"types/"
]
},
"remarkConfig": {
"plugins": [
[
"./index.js",
[
"yaml",
"toml"
]
],
"preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}

369
node_modules/remark-frontmatter/readme.md generated vendored Normal file
View file

@ -0,0 +1,369 @@
# remark-frontmatter
[![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]
[**remark**][remark] plugin to support frontmatter (YAML, TOML, and more).
## Contents
* [What is this?](#what-is-this)
* [When should I use this?](#when-should-i-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`unified().use(remarkFrontmatter[, options])`](#unifieduseremarkfrontmatter-options)
* [Examples](#examples)
* [Example: custom marker](#example-custom-marker)
* [Example: custom fence](#example-custom-fence)
* [Syntax](#syntax)
* [Syntax tree](#syntax-tree)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)
## What is this?
This package is a [unified][] ([remark][]) plugin to add support for YAML, TOML,
and other frontmatter.
You can use this to add support for parsing and serializing this syntax
extension.
unified is an AST (abstract syntax tree) based transform project.
**remark** is everything unified that relates to markdown.
The layer under remark is called mdast, which is only concerned with syntax
trees.
Another layer underneath is micromark, which is only concerned with parsing.
This package is a small wrapper to integrate all of these.
## When should I use this?
Frontmatter is a metadata format in front of content.
Its typically written in YAML and is often used with markdown.
This mechanism works well when you want authors, that have some markup
experience, to configure where or how the content is displayed or supply
metadata about content.
Frontmatter does not work everywhere so it makes markdown less portable.
A good example use case is markdown being rendered by (static) site generators.
## Install
This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).
In Node.js (12.20+, 14.14+, 16.0+), install with [npm][]:
```sh
npm install remark-frontmatter
```
In Deno with [Skypack][]:
```js
import remarkFrontmatter from 'https://cdn.skypack.dev/remark-frontmatter@4?dts'
```
In browsers with [Skypack][]:
```html
<script type="module">
import remarkFrontmatter from 'https://cdn.skypack.dev/remark-frontmatter@4?min'
</script>
```
## Use
Say we have the following file, `example.md`:
```markdown
+++
title = "New Website"
+++
# Other markdown
```
And our module, `example.js`, looks as follows:
```js
import {read} from 'to-vfile'
import {unified} from 'unified'
import remarkParse from 'remark-parse'
import remarkFrontmatter from 'remark-frontmatter'
import remarkStringify from 'remark-stringify'
main()
async function main() {
const file = await unified()
.use(remarkParse)
.use(remarkStringify)
.use(remarkFrontmatter, ['yaml', 'toml'])
.use(() => (tree) => {
console.dir(tree)
})
.process(await read('example.md'))
console.log(String(file))
}
```
Now, running `node example` yields:
```js
{
type: 'root',
children: [
{type: 'toml', value: 'title = "New Website"', position: [Object]},
{type: 'heading', depth: 1, children: [Array], position: [Object]}
],
position: {
start: {line: 1, column: 1, offset: 0},
end: {line: 6, column: 1, offset: 48}
}
}
```
```markdown
+++
title = "New Website"
+++
# Other markdown
```
## API
This package exports no identifiers.
The default export is `remarkFrontmatter`.
### `unified().use(remarkFrontmatter[, options])`
Configures remark so that it can parse and serialize frontmatter (YAML, TOML,
and more).
Doesnt parse the data inside them: [create your own plugin][create-plugin] to
do that.
##### `options`
One `preset` or `Matter`, or an array of them, defining all the supported
frontmatters (default: `'yaml'`).
##### `preset`
Either `'yaml'` or `'toml'`:
* `'yaml'``Matter` defined as `{type: 'yaml', marker: '-'}`
* `'toml'``Matter` defined as `{type: 'toml', marker: '+'}`
##### `Matter`
An object with a `type` and either a `marker` or a `fence`:
* `type` (`string`)
— Type to tokenize as
* `marker` (`string` or `{open: string, close: string}`)
— Character used to construct fences.
By providing an object with `open` and `close` different characters can be
used for opening and closing fences.
For example the character `'-'` will result in `'---'` being used as the
fence
* `fence` (`string` or `{open: string, close: string}`)
— String used as the complete fence.
By providing an object with `open` and `close` different values can be used
for opening and closing fences.
This can be used too if fences contain different characters or lengths other
than 3
* `anywhere` (`boolean`, default: `false`)
if `true`, matter can be found anywhere in the document.
If `false` (default), only matter at the start of the document is recognized
## Examples
### Example: custom marker
A custom frontmatter with different open and close markers, repeated 3 times,
that looks like this:
```text
<<<
data
>>>
# hi
```
…can be supported with:
```js
// …
.use(remarkFrontmatter, {type: 'custom', marker: {open: '<', close: '>'}})
// …
```
### Example: custom fence
A custom frontmatter with custom fences that are not repeated like this:
```text
{
"key": "value"
}
# hi
```
…can be supported with:
```js
// …
.use(remarkFrontmatter, {type: 'json', fence: {open: '{', close: '}'}})
// …
```
## Syntax
This plugin applies a micromark extensions to parse the syntax.
See its readme for how it works:
* [`micromark-extension-frontmatter`](https://github.com/micromark/micromark-extension-frontmatter)
The syntax supported depends on the given configuration.
## Syntax tree
This plugin applies one mdast utility to build and serialize the AST.
See its readme for how it works:
* [`mdast-util-frontmatter`](https://github.com/syntax-tree/mdast-util-directive)
The node types supported in the tree depend on the given configuration.
## Types
This package is fully typed with [TypeScript][].
The YAML node type is supported in `@types/mdast` by default.
To add other node types, register them by adding them to
`FrontmatterContentMap`:
```ts
import type {Literal} from 'mdast'
interface TOML extends Literal {
type: 'toml'
}
declare module 'mdast' {
interface FrontmatterContentMap {
// Allow using toml nodes defined by `remark-frontmatter`.
toml: TOML
}
}
```
## Compatibility
Projects maintained by the unified collective are compatible with all maintained
versions of Node.js.
As of now, that is Node.js 12.20+, 14.14+, and 16.0+.
Our projects sometimes work with older versions, but this is not guaranteed.
This plugin works with unified 6+ and remark 13+.
## Security
Use of `remark-frontmatter` does not involve [**rehype**][rehype]
([**hast**][hast]) or user content so there are no openings for
[cross-site scripting (XSS)][xss] attacks.
## Related
* [`remark-yaml-config`](https://github.com/remarkjs/remark-yaml-config)
— configure remark from YAML configuration
* [`remark-gfm`](https://github.com/remarkjs/remark-gfm)
— support GFM (autolink literals, strikethrough, tables, tasklists)
* [`remark-github`](https://github.com/remarkjs/remark-github)
— link references to commits, issues, pull-requests, and users, like on
GitHub
* [`remark-directive`](https://github.com/remarkjs/remark-directive)
— support directives
* [`remark-math`](https://github.com/remarkjs/remark-math)
— support math
## Contribute
See [`contributing.md`][contributing] in [`remarkjs/.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/remarkjs/remark-frontmatter/workflows/main/badge.svg
[build]: https://github.com/remarkjs/remark-frontmatter/actions
[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark-frontmatter.svg
[coverage]: https://codecov.io/github/remarkjs/remark-frontmatter
[downloads-badge]: https://img.shields.io/npm/dm/remark-frontmatter.svg
[downloads]: https://www.npmjs.com/package/remark-frontmatter
[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-frontmatter.svg
[size]: https://bundlephobia.com/result?p=remark-frontmatter
[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/remarkjs/remark/discussions
[npm]: https://docs.npmjs.com/cli/install
[skypack]: https://www.skypack.dev
[health]: https://github.com/remarkjs/.github
[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md
[license]: license
[author]: https://wooorm.com
[unified]: https://github.com/unifiedjs/unified
[remark]: https://github.com/remarkjs/remark
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
[typescript]: https://www.typescriptlang.org
[rehype]: https://github.com/rehypejs/rehype
[hast]: https://github.com/syntax-tree/hast
[create-plugin]: https://unifiedjs.com/learn/guide/create-a-plugin/