{"maintainers":[{"email":"remcohaszing@gmail.com","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"keywords":["abstract","ast","markdown","mdast","parse","plugin","remark","remark-plugin","syntax","tree","unified"],"dist-tags":{"latest":"11.0.0","next":"9.0.0-alpha.1"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"description":"remark plugin to add support for parsing markdown input","readme":"# remark-parse\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n[![Sponsors][sponsors-badge]][collective]\n[![Backers][backers-badge]][collective]\n[![Chat][chat-badge]][chat]\n\n**[remark][]** plugin to add support for parsing from markdown.\n\n## Contents\n\n*   [What is this?](#what-is-this)\n*   [When should I use this?](#when-should-i-use-this)\n*   [Install](#install)\n*   [Use](#use)\n*   [API](#api)\n    *   [`unified().use(remarkParse)`](#unifieduseremarkparse)\n*   [Examples](#examples)\n    *   [Example: support GFM and frontmatter](#example-support-gfm-and-frontmatter)\n    *   [Example: turning markdown into a man page](#example-turning-markdown-into-a-man-page)\n*   [Syntax](#syntax)\n*   [Syntax tree](#syntax-tree)\n*   [Types](#types)\n*   [Compatibility](#compatibility)\n*   [Security](#security)\n*   [Contribute](#contribute)\n*   [Sponsor](#sponsor)\n*   [License](#license)\n\n## What is this?\n\nThis package is a [unified][] ([remark][]) plugin that defines how to take\nmarkdown as input and turn it into a syntax tree.\n\nSee [the monorepo readme][remark] for info on what the remark ecosystem is.\n\n## When should I use this?\n\nThis plugin adds support to unified for parsing markdown.\nIf you also need to serialize markdown, you can alternatively use\n[`remark`][remark-core], which combines unified, this plugin, and\n[`remark-stringify`][remark-stringify].\n\nIf you *just* want to turn markdown into HTML (with maybe a few extensions),\nwe recommend [`micromark`][micromark] instead.\nIf you don’t use plugins and want to access the syntax tree, you can directly\nuse [`mdast-util-from-markdown`][mdast-util-from-markdown].\nremark focusses on making it easier to transform content by abstracting these\ninternals away.\n\nYou can combine this plugin with other plugins to add syntax extensions.\nNotable examples that deeply integrate with it are\n[`remark-gfm`][remark-gfm],\n[`remark-mdx`][remark-mdx],\n[`remark-frontmatter`][remark-frontmatter],\n[`remark-math`][remark-math], and\n[`remark-directive`][remark-directive].\nYou can also use any other [remark plugin][remark-plugin] after `remark-parse`.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 16+), install with [npm][]:\n\n```sh\nnpm install remark-parse\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport remarkParse from 'https://esm.sh/remark-parse@11'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import remarkParse from 'https://esm.sh/remark-parse@11?bundle'\n</script>\n```\n\n## Use\n\nSay we have the following module `example.js`:\n\n```js\nimport rehypeStringify from 'rehype-stringify'\nimport remarkGfm from 'remark-gfm'\nimport remarkParse from 'remark-parse'\nimport remarkRehype from 'remark-rehype'\nimport {unified} from 'unified'\n\nconst doc = `\n# Mercury\n\n**Mercury** is the first planet from the [Sun](https://en.wikipedia.org/wiki/Sun)\nand the smallest planet in the Solar System.\n`\n\nconst file = await unified()\n  .use(remarkParse)\n  .use(remarkGfm)\n  .use(remarkRehype)\n  .use(rehypeStringify)\n  .process(doc)\n\nconsole.log(String(file))\n```\n\n…then running `node example.js` yields:\n\n```html\n<h1>Mercury</h1>\n<p><strong>Mercury</strong> is the first planet from the <a href=\"https://en.wikipedia.org/wiki/Sun\">Sun</a>\nand the smallest planet in the Solar System.</p>\n```\n\n## API\n\nThis package exports no identifiers.\nThe default export is [`remarkParse`][api-remark-parse].\n\n### `unified().use(remarkParse)`\n\nAdd support for parsing from markdown.\n\n###### Parameters\n\nThere are no parameters.\n\n###### Returns\n\nNothing (`undefined`).\n\n## Examples\n\n### Example: support GFM and frontmatter\n\nWe support CommonMark by default.\nNon-standard markdown extensions can be enabled with plugins.\n\nThis example shows how to support GFM features (autolink literals,\nfootnotes, strikethrough, tables, tasklists) and frontmatter (YAML):\n\n```js\nimport rehypeStringify from 'rehype-stringify'\nimport remarkFrontmatter from 'remark-frontmatter'\nimport remarkGfm from 'remark-gfm'\nimport remarkParse from 'remark-parse'\nimport remarkRehype from 'remark-rehype'\nimport {unified} from 'unified'\n\nconst doc = `---\nlayout: solar-system\n---\n\n# Hi ~~Mars~~Venus!\n`\n\nconst file = await unified()\n  .use(remarkParse)\n  .use(remarkFrontmatter)\n  .use(remarkGfm)\n  .use(remarkRehype)\n  .use(rehypeStringify)\n  .process(doc)\n\nconsole.log(String(file))\n```\n\nYields:\n\n```html\n<h1>Hi <del>Mars</del>Venus!</h1>\n```\n\n### Example: turning markdown into a man page\n\nMan pages (short for manual pages) are a way to document CLIs (example: type\n`man git-log` in your terminal).\nThey use an old markup format called roff.\nThere’s a remark plugin, [`remark-man`][remark-man], that can serialize as\nroff.\n\nThis example shows how to turn markdown into man pages by using unified with\n`remark-parse` and `remark-man`:\n\n```js\nimport remarkMan from 'remark-man'\nimport remarkParse from 'remark-parse'\nimport {unified} from 'unified'\n\nconst doc = `\n# titan(7) -- largest moon of saturn\n\nTitan is the largest moon…\n`\n\nconst file = await unified().use(remarkParse).use(remarkMan).process(doc)\n\nconsole.log(String(file))\n```\n\nYields:\n\n```roff\n.TH \"TITAN\" \"7\" \"September 2023\" \"\" \"\"\n.SH \"NAME\"\n\\fBtitan\\fR - largest moon of saturn\n.P\nTitan is the largest moon…\n```\n\n## Syntax\n\nMarkdown is parsed according to CommonMark.\nOther plugins can add support for syntax extensions.\nIf you’re interested in extending markdown,\n[more information is available in micromark’s readme][micromark-extend].\n\n## Syntax tree\n\nThe syntax tree used in remark is [mdast][].\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports the additional type `Options` (which is currently empty).\n\n## Compatibility\n\nProjects maintained by the unified collective are compatible with maintained\nversions of Node.js.\n\nWhen we cut a new major release, we drop support for unmaintained versions of\nNode.\nThis means we try to keep the current release line, `remark-parse@^11`,\ncompatible with Node.js 16.\n\n## Security\n\nAs markdown can be turned into HTML and improper use of HTML can open you up to\n[cross-site scripting (XSS)][xss] attacks, use of remark can be unsafe.\nWhen going to HTML, you will combine remark with **[rehype][]**, in which case\nyou should use [`rehype-sanitize`][rehype-sanitize].\n\nUse of remark plugins could also open you up to other attacks.\nCarefully assess each plugin and the risks involved in using them.\n\nFor info on how to submit a report, see our [security policy][security].\n\n## Contribute\n\nSee [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways\nto get started.\nSee [`support.md`][support] for ways to get help.\nJoin us in [Discussions][chat] to chat with the community and contributors.\n\nThis project has a [code of conduct][coc].\nBy interacting with this repository, organization, or community you agree to\nabide by its terms.\n\n## Sponsor\n\nSupport this effort and give back by sponsoring on [OpenCollective][collective]!\n\n<table>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://vercel.com\">Vercel</a><br><br>\n  <a href=\"https://vercel.com\"><img src=\"https://avatars1.githubusercontent.com/u/14985020?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://motif.land\">Motif</a><br><br>\n  <a href=\"https://motif.land\"><img src=\"https://avatars1.githubusercontent.com/u/74457950?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.hashicorp.com\">HashiCorp</a><br><br>\n  <a href=\"https://www.hashicorp.com\"><img src=\"https://avatars1.githubusercontent.com/u/761456?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.gitbook.com\">GitBook</a><br><br>\n  <a href=\"https://www.gitbook.com\"><img src=\"https://avatars1.githubusercontent.com/u/7111340?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.gatsbyjs.org\">Gatsby</a><br><br>\n  <a href=\"https://www.gatsbyjs.org\"><img src=\"https://avatars1.githubusercontent.com/u/12551863?s=256&v=4\" width=\"128\"></a>\n</td>\n</tr>\n<tr valign=\"middle\">\n</tr>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.netlify.com\">Netlify</a><br><br>\n  <!--OC has a sharper image-->\n  <a href=\"https://www.netlify.com\"><img src=\"https://images.opencollective.com/netlify/4087de2/logo/256.png\" width=\"128\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.coinbase.com\">Coinbase</a><br><br>\n  <a href=\"https://www.coinbase.com\"><img src=\"https://avatars1.githubusercontent.com/u/1885080?s=256&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://themeisle.com\">ThemeIsle</a><br><br>\n  <a href=\"https://themeisle.com\"><img src=\"https://avatars1.githubusercontent.com/u/58979018?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://expo.io\">Expo</a><br><br>\n  <a href=\"https://expo.io\"><img src=\"https://avatars1.githubusercontent.com/u/12504344?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://boostnote.io\">Boost Note</a><br><br>\n  <a href=\"https://boostnote.io\"><img src=\"https://images.opencollective.com/boosthub/6318083/logo/128.png\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://markdown.space\">Markdown Space</a><br><br>\n  <a href=\"https://markdown.space\"><img src=\"https://images.opencollective.com/markdown-space/e1038ed/logo/128.png\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.holloway.com\">Holloway</a><br><br>\n  <a href=\"https://www.holloway.com\"><img src=\"https://avatars1.githubusercontent.com/u/35904294?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\"></td>\n<td width=\"10%\"></td>\n</tr>\n<tr valign=\"middle\">\n<td width=\"100%\" align=\"center\" colspan=\"8\">\n  <br>\n  <a href=\"https://opencollective.com/unified\"><strong>You?</strong></a>\n  <br><br>\n</td>\n</tr>\n</table>\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://github.com/remarkjs/remark/workflows/main/badge.svg\n\n[build]: https://github.com/remarkjs/remark/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg\n\n[coverage]: https://codecov.io/github/remarkjs/remark\n\n[downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg\n\n[downloads]: https://www.npmjs.com/package/remark-parse\n\n[size-badge]: https://img.shields.io/bundlejs/size/remark-parse\n\n[size]: https://bundlejs.com/?q=remark-parse\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[collective]: https://opencollective.com/unified\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[chat]: https://github.com/remarkjs/remark/discussions\n\n[security]: https://github.com/remarkjs/.github/blob/main/security.md\n\n[health]: https://github.com/remarkjs/.github\n\n[contributing]: https://github.com/remarkjs/.github/blob/main/contributing.md\n\n[support]: https://github.com/remarkjs/.github/blob/main/support.md\n\n[coc]: https://github.com/remarkjs/.github/blob/main/code-of-conduct.md\n\n[license]: https://github.com/remarkjs/remark/blob/main/license\n\n[author]: https://wooorm.com\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[mdast]: https://github.com/syntax-tree/mdast\n\n[mdast-util-from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown\n\n[micromark]: https://github.com/micromark/micromark\n\n[micromark-extend]: https://github.com/micromark/micromark#extensions\n\n[rehype]: https://github.com/rehypejs/rehype\n\n[rehype-sanitize]: https://github.com/rehypejs/rehype-sanitize\n\n[remark]: https://github.com/remarkjs/remark\n\n[remark-core]: ../remark/\n\n[remark-directive]: https://github.com/remarkjs/remark-directive\n\n[remark-frontmatter]: https://github.com/remarkjs/remark-frontmatter\n\n[remark-gfm]: https://github.com/remarkjs/remark-gfm\n\n[remark-mdx]: https://github.com/mdx-js/mdx/tree/main/packages/remark-mdx\n\n[remark-man]: https://github.com/remarkjs/remark-man\n\n[remark-math]: https://github.com/remarkjs/remark-math\n\n[remark-plugin]: https://github.com/remarkjs/remark#plugin\n\n[remark-stringify]: ../remark-stringify/\n\n[typescript]: https://www.typescriptlang.org\n\n[unified]: https://github.com/unifiedjs/unified\n\n[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting\n\n[api-remark-parse]: #unifieduseremarkparse\n","repository":{"type":"git","url":"git+https://github.com/remarkjs/remark.git#main"},"users":{"kakaman":true,"kevinbird61":true,"seangenabe":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"license":"MIT","versions":{"0.0.0":{"name":"remark-parse","version":"0.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.0","extend":"^3.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0"},"_id":"remark-parse@0.0.0","scripts":{},"_shasum":"fc50d1fe29da92f757fdefefd408b6ea9ad882ea","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"fc50d1fe29da92f757fdefefd408b6ea9ad882ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-0.0.0.tgz","integrity":"sha512-R6tnY7tFu+P0GPcrBAMfSyPevLT4qyYLKvUuNvDXLv1g6YmGPPFamuVv0adK84rAq4V77Enc4JxE9w2CSPPizA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAFl4SaeelgNwFUwA+v60PY5jztA8XStXmM5DuZ58VlNAiANkGF/lMEY35HwvIJ92xnc9tsj2QT/ne/3jrntRch3Rg=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-0.0.0.tgz_1465736076182_0.8585487247910351"},"directories":{}},"1.0.0":{"name":"remark-parse","version":"1.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.0","extend":"^3.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0"},"_id":"remark-parse@1.0.0","scripts":{},"_shasum":"cd62b36b39008eadcbe23dfe8337b046e726d768","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"cd62b36b39008eadcbe23dfe8337b046e726d768","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-1.0.0.tgz","integrity":"sha512-QfbA0HRCScvVOQg8N6xJAmYT7yfysYT2XN5ttwH8c+2CdUwe86G+b5yCMHEs1Z1kO5OO3xD2FGCKsJPwOMnhKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFxSR7cm3cK3fM3zTX72Qo+AEbOpJm+SKG7/O6eaTr/AIgZ+tPAaCLfH0b9YyX5cma9QdB7ZJadtkXfjAyZVXOsyc="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-1.0.0.tgz_1465767512345_0.6051385258324444"},"directories":{}},"1.1.0":{"name":"remark-parse","version":"1.1.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.0","extend":"^3.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0"},"_id":"remark-parse@1.1.0","scripts":{},"_shasum":"c3ca10f9a8da04615c28f09aa4e304510526ec21","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"c3ca10f9a8da04615c28f09aa4e304510526ec21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-1.1.0.tgz","integrity":"sha512-YOrEFkb76pK/kM464isSf8YVfsye6Hf32FT1CrtD0M+YyhraGoN1neUP16dnvRdp1zWINfgQbCRPdnZvAC1aUQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAbqrfrPa1did8kH1Kf0MDcORdfw7/ko0Tsdc44f51u3AiBm2mHyDInreN/7HtNEvYBJy7gE2eeUuxqhUDdanD2MAQ=="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-1.1.0.tgz_1470758336888_0.29067788645625114"},"directories":{}},"2.0.0":{"name":"remark-parse","version":"2.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"_id":"remark-parse@2.0.0","scripts":{},"_shasum":"a09c1375999877aa68099a137b083c3b55b0dfc1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"a09c1375999877aa68099a137b083c3b55b0dfc1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.0.0.tgz","integrity":"sha512-rvoh3zE2dM82jVvFRESQYptCl7uLqp8SYRu10/YhkCJYhV7hOz7ZvB+n4qCs/LDxIhbChsc52giJE0QAWmzA6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJsVHHqXmonaHl5f0v07XUs7gJO0gJkmNgePPJa7R56QIgbs5Qj6pLZqWr0Clbm3o4NGnms6b4gcYLtuxSQU8/8iM="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-2.0.0.tgz_1471804587198_0.4748798469081521"},"directories":{}},"2.0.1":{"name":"remark-parse","version":"2.0.1","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"_id":"remark-parse@2.0.1","scripts":{},"_shasum":"6d436c47e53ce689038f1291fc2fbac9524acc9d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"6d436c47e53ce689038f1291fc2fbac9524acc9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.0.1.tgz","integrity":"sha512-2XbEBQ6FWv1wRuIxBX+8VM6byNLThQm044OLQkWyyogL5DvgnoyLsWxUYhN79caGTClOpk4m5ydJhWUzzggc0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbdIN9eiJfpH0zR6iQ7iVlqSUnnyCczb6CTtFW5scI4AIhAOOhHYh9JNANL/8k73wpsx5m4uJJo/lTfnrHa3gc9Ggb"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-2.0.1.tgz_1471901294926_0.5475583807565272"},"directories":{}},"2.0.2":{"name":"remark-parse","version":"2.0.2","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"_id":"remark-parse@2.0.2","scripts":{},"_shasum":"6abe266a166b14065901647ccc77f9b1826148e2","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"6abe266a166b14065901647ccc77f9b1826148e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.0.2.tgz","integrity":"sha512-XarhoeN2NnSOQlNNB0Lb0ssC7b27ZxDf42Be5wa5EmJ1MZ5quA4s/KzjLobp1rvoNu+Nr6vtXeRVvtlj94bJPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH3VoJvrP0MFOXOKL5zBO7ilJ08JY2zh+kGHp29gxlm0AiEAmYbmoqkaxTXamhHZry/3KqiyqIZu/24imMWH7oBlTxo="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/remark-parse-2.0.2.tgz_1476529460958_0.4804279583040625"},"directories":{}},"2.1.0":{"name":"remark-parse","version":"2.1.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"_id":"remark-parse@2.1.0","scripts":{},"_shasum":"0c588d1f876d0832f2e8077c9ba82699edc73717","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"0c588d1f876d0832f2e8077c9ba82699edc73717","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.1.0.tgz","integrity":"sha512-sNg89uCrtdJSC0xjSk5p1WgrK+iw43L62zNlyAeWDLE9jD6PCLNo5Sf6Qd3ZKLUoz0KUWc83ez6xReAD51T/iA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGTAyN1Q51oGUydAk8FtSH/s0EQ8oDASKyuqiDxuNSjuAiEAlDdv5MuGO5U8BBKCp9cJSGcotW5sBtoAv5ISEFzVb24="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/remark-parse-2.1.0.tgz_1477604696688_0.5501199204009026"},"directories":{}},"2.2.0":{"name":"remark-parse","version":"2.2.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"_id":"remark-parse@2.2.0","scripts":{},"_shasum":"92a8e7750d4fbfd53cd460adad686014f2a7f43b","_from":".","_npmVersion":"4.0.1","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"92a8e7750d4fbfd53cd460adad686014f2a7f43b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.2.0.tgz","integrity":"sha512-ZpUWLOTsJ9xvbRGPh7qetqEzhxtqKrb5ouc60GbcXzDRH+Eu+PK/YgSoLxBpnvvDixkN2coc6XxzWzIIxtDe9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdy3H4F6oLshbb3uT7p264KANmTe1XQPYgnMOdRD2JhQIhALtYNR5g+u6gggJJM6WqOUhOQ134VwKzysGJ0MipD0VV"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/remark-parse-2.2.0.tgz_1477605052727_0.5713571631349623"},"directories":{}},"2.3.0":{"name":"remark-parse","version":"2.3.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"engines":{"node":">=0.11.0"},"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"xo":false,"_id":"remark-parse@2.3.0","scripts":{},"_shasum":"ced58bfbef9999374f9ff33fbc2e63fe2b0c5c37","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"ced58bfbef9999374f9ff33fbc2e63fe2b0c5c37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-2.3.0.tgz","integrity":"sha512-IrHRVas/IeOx3scoxx0wxsAiRfy2hJ6dgfgk9sNR9yACXeg8F3xOcbAwzwnSLhyBSkPlzXcZEzsVmCakvIepgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAxt7OisFQm6TkW0OoYQi7NHrtDjg9M8f2TdcJ9sncSNAiEAhohWFcwouA9a4G1Vi7/ydkAk1My43Fp+J0Lw1DuNEAI="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/remark-parse-2.3.0.tgz_1487615815282_0.0979465777054429"},"directories":{}},"3.0.0":{"name":"remark-parse","version":"3.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"xo":false,"_id":"remark-parse@3.0.0","scripts":{},"_shasum":"f078c8c9976efb0f2afd011c79f30708354593b1","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"f078c8c9976efb0f2afd011c79f30708354593b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-3.0.0.tgz","integrity":"sha512-GFZr8EeMpcZQfTsnaNvkf+l/XsSM93Xf1jkxsPlYx/lXHeVWbzv94sshmp3J+YFtpsv849hox3JVokkrpfAjgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCV1vulGOZRUfZl960NqZhcGembdFJZhtybRBPNxmukSwIhAM1fo9Ibrc33a7YwO1HbDWV7HzD6IlqVj2vULfjoY1ZQ"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/remark-parse-3.0.0.tgz_1487859879282_0.32127860141918063"},"directories":{}},"3.0.1":{"name":"remark-parse","version":"3.0.1","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","has":"^1.0.1","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"xo":false,"_id":"remark-parse@3.0.1","scripts":{},"_shasum":"1b9f841a44d8f4fbf2246850265459a4eb354c80","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"shasum":"1b9f841a44d8f4fbf2246850265459a4eb354c80","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-3.0.1.tgz","integrity":"sha512-B0IoK9ZGTUBTrbM1m+HHM4ai/vNSUmmAm6OMIng/+yuzpygZieVQ99oD7DXrdE5pOPhUfvrekmA+hqaDCLYHcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoeWS21PWlkwg1w73AdO7pxOjBTTtNBt2hocX1GX8tjgIgPb9oALlDYGEPAcrOTkXGDU5GaJSUg6pw5KjFA1AHPEM="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/remark-parse-3.0.1.tgz_1493468005743_0.3720015222206712"},"directories":{}},"4.0.0":{"name":"remark-parse","version":"4.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/wooorm/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/wooorm/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.0.2","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"xo":false,"_id":"remark-parse@4.0.0","_npmVersion":"5.1.0","_nodeVersion":"8.1.2","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-XZgICP2gJ1MHU7+vQaRM+VA9HEL3X253uwUM/BGgx3iv6TH2B3bF3B8q00DKcyP9YrJV+/7WOWEWBFF/u8cIsw==","shasum":"99f1f049afac80382366e2e0d0bd55429dd45d8b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-4.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbqBtOXf1rA8r7a9t3iMw1hqwh1IqOJxhrDB0citEVigIgGFh/utAmV1q2r2BWeQXK3izskFkwyABzKY0/YmKAUYk="}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse-4.0.0.tgz_1500580551901_0.16874613845720887"},"directories":{}},"5.0.0":{"name":"remark-parse","version":"5.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"}],"files":["index.js","lib"],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"xo":false,"_id":"remark-parse@5.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==","shasum":"4c077f9e499044d1d5c13f80d7a98cf7b9285d95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-5.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC3g2FPFtwK9hOT0VRbc1qjFFIhKbf5RzwXK/YuvxlmYQIhALPaa3sztHpIU47D88noSKY6jGZzRhWCviCxwkXjwDLs"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse-5.0.0.tgz_1516453870357_0.2813395878765732"},"directories":{}},"6.0.0":{"name":"remark-parse","version":"6.0.0","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"devDependencies":{"tape":"^4.9.1","unified":"^7.0.0","vfile":"^3.0.0"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@6.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-AtZDKnwqOv1LM/0/V4KXmI6i3TzuXmayQNJzBRf9UBAmmKld3jWSFsMuyrniQ3KIsa3H+L+g1742/cTjMK/nCg==","shasum":"e199d435b47a4a4723ee1b851268d6adf069e8ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-6.0.0.tgz","fileCount":50,"unpackedSize":107004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbzNoUCRA9TVsSAnZWagAAWJwP/3pDH7onTDLU8xL+w1zP\n724fg50uDxiO5ZeFk2zKAwQGY+qTw0hFaG5tUeJWIyhczRxyx5QtEypwJvu2\nbhP8USfyYTijC5C2FVyb/b+Zhf1Fc+D3tsUrs8iTNRUjRFFWKn9UmapXr11P\nk5VUQBVTLBlnq4aWDHw/orlKq9IaYdk7vXTb8M1IpX2F9uZbrWyqX9jDDZ6e\njrVvYgSrk9dACf8p7BQlaIclFG0S7gLCZsJhjrYzGB5Pobz6Eu32dkKtBfG7\ndyldFgyNtZ3gSUhKRqdBvtt4JAWnQ49xtHl4e5Kj8DGgJqaohhe+jjA+w0qf\naozvRpZO/Jeb29+gM2rrGilngW6/VXtcXtxXfTvI7DFj0EJNrg6AcYvOru00\n68LXWaS3RxKLXSRMohVxpNu+tb6hFp7I4LYjfjdC23ufPxGQLBgYANc4do5F\nPXq2eQj7UTTxomXwqmPjOicZ27n17xQmsz8oMLNv2NheaBTjzuJXJrdo8zEK\nZoTX5F9+4poKveZM0DHK8PZWEhHhaQIgweh2iH0v7BetVSaR8X92lQivVpwR\neMsJPuUIj64YjrB7asmhr9YVX3ssZD8ybZ2Fp7atd4bpLRzaryKus/SEiqiq\nf5OOkv2GZ9lpjEvVUr3APwNSnwlLtzb/P6wmFxDeo8yO2QSN6P7ZsSZgkp3o\nC5LK\r\n=Zo8n\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcs9UlJJ6V3zjJ05wOyNfncLThs6THAjuNCl/WgdM98gIhAOU8hgfD2OAFL77S9DMBnV/Iyy9QP0lio4ExWpK6Y07r"}]},"maintainers":[{"email":"Christian.Murphy.42@gmail.com","name":"anonymous"},{"email":"denysdovhan@gmail.com","name":"anonymous"},{"email":"eush77@gmail.com","name":"anonymous"},{"email":"fazouanem3@gmail.com","name":"anonymous"},{"email":"david@spektrakel.de","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"lin90162@yahoo.co.jp","name":"anonymous"},{"email":"fluke8259@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"victor@draft.li","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"},{"email":"xuopled@gmail.com","name":"anonymous"},{"email":"zeke@sikelianos.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_6.0.0_1540151827465_0.5450273092519602"},"_hasShrinkwrap":false},"6.0.1":{"name":"remark-parse","version":"6.0.1","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"devDependencies":{"tape":"^4.9.1","unified":"^7.0.0","vfile":"^3.0.0"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@6.0.1","_npmVersion":"6.4.1","_nodeVersion":"10.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-H9h8c/uafJAoVoHvIBMzWuUDxDckW7+tc60/OkstZQw6fv7qDX6ALl3A8a1G6aRrx1s4WeaF0spm4WbXHAHcOw==","shasum":"62bc4fc91045dbb0a9fc6900150b0404e2598e99","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-6.0.1.tgz","fileCount":50,"unpackedSize":107035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0vhoCRA9TVsSAnZWagAAd0oP/iK1IdH3FHv4gA6ctpa/\nrIccFmQ9lN5eh/B9L72JzsRWZk0XXk/OS4cdcKySWMVtknkpY9jiDqLPDNPF\n0C/ZrG9iuqjA7R+v6CKGnPV6H6tj5prODZSThwRQEG52VJQvSqSe5VcgnN5M\nMcseNnozghJfEK7+PvjjENA1PGWiUEk6MLkjY6LoRMJojmXU2oY5rBkm3FWD\nOe6ao+dP2v8V4d7eOz9UZJXt/inU8/okVMvcnivaCfG0vt3DV0Q/apuYaDnd\nk/6wXf96peKetVt3YqES6lK20q5qF4va3zaFsLflbUwYGo3kRkd04AklwGSf\nR74oaBAIcgexxjhgarLdIpYeh8387YUhvhp10vpFDjIaT8gws1qF91qJ72PE\n3WbUw6f1WV0bZpklI3bR91rly95u92AOWfP5ZqpEsZruqkxq8pfpY6h9WYBB\nTRPT6fXDQWCXuIzPLzDhF5tG7MXFCHkiwvV74ptHY/dbtiYVsFHejr1jNB0+\n/9nwcJaj++VUNsI1/yeuUy9Z69V4KP1vWlOjSgpJGHSuKdEPtYNMaRPZqBp8\nvpDjKu9SoXBa8Bx/Zeph1qbMTTTI9V79RK/adPgpxhJkuRdhVwY4QXXWsuWC\nN0Yq9zhBOFIg8gxwmD2S9nZtz2c2wJHVmEGQQXoi+brQ8e4UuvQrXNJLpzYO\nrxBb\r\n=Hjcn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDCso65vjqvUUB8CWMQbcPUQXaUiB9HZTUDrvjqU+h6BgIhAOh30YnHKYnMElBxzz0fH/9rrzEbhRUCk5CjGGLNq5Fu"}]},"maintainers":[{"email":"Christian.Murphy.42@gmail.com","name":"anonymous"},{"email":"denysdovhan@gmail.com","name":"anonymous"},{"email":"eush77@gmail.com","name":"anonymous"},{"email":"fazouanem3@gmail.com","name":"anonymous"},{"email":"david@spektrakel.de","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"lin90162@yahoo.co.jp","name":"anonymous"},{"email":"fluke8259@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"victor@draft.li","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"},{"email":"xuopled@gmail.com","name":"anonymous"},{"email":"zeke@sikelianos.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_6.0.1_1540552807241_0.2032717087259337"},"_hasShrinkwrap":false},"6.0.2":{"name":"remark-parse","version":"6.0.2","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"http://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"devDependencies":{"tape":"^4.9.1","unified":"^7.0.0","vfile":"^3.0.0"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@6.0.2","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-cBbst7OG/pH+VHYggWRabpVn9EP6CUb2hAtSg9cPysRvf+NE1v2cRdXC+TfXumJCar/wpPDK833zPu1fwVanZw==","shasum":"e1e1f987c5a406875757fcb4ebbca86b7c1e110d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-6.0.2.tgz","fileCount":50,"unpackedSize":107234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5wOTCRA9TVsSAnZWagAAOToQAJDc28kdBdxyu1M/MOal\nUsgkdQ63eYnRrgmVvrfq6AufDPpPbh1jsPxuayV1ifEwwR5Yd8zMFHh514NX\neRyuwY5KBoZVcaDXrjaj2YJfzLGygfiDppRaZVGPvC9Ce+yK6Gi0CxIgym6w\n9y1Nb2LIv7aHuATYZDh5GHb8YJwDkOC94KJOwLoQW/BWK9rASxqq/VQfUNNf\nIyvkiev5KOoap5TrNwA/+jaQAnu6TbfL+hr3JoPlANgDNLY7hcopIe5JWpam\nJJPFLrv4E8gxdKHkUID1XtauJ+eii80oVItgnHAb7W270xGHYKtJORhOUSuj\nHzhKxef2TTHDCRNXbvNUsUcHjFr7XMo5hMyYbVeq4CjOAIXH50Y2BZsAN10k\nuBFrV1owJ65URRC8loB7Cf4dKQjH6q/yQZVrLpzCHrZm7ZjCmVxQXwECz8lk\nSsqs5XyC9l0KAv/ELnWZ/UzruXXXrmu8Yw+T2/cvazYBY76JbcMWMQR70J8g\npgnpSudWBRzL9wBXf3aczALmuKH94v89jp/m11uEJw0BYE2fjIL8C3AKUoz9\n5JJBxQYbExjElwT5huJJU5HbQ/D+qp2O8El23PwrodAfYMOv3+MlCEWg4PTY\nCEY2x3etjcn19AtG7UyPJuKXflnibZPw2HQZ5V9FiyeK7HKb44zI39sAI8wB\nLlCI\r\n=Gr//\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG3IShqCckXao3zEPOOkGHZXnr8VTTBYToMLeCxM8dbgIhAJ3rvll+K3WaaYU4HNeZvndVrsxrWdf+OVW+14ZkFK+t"}]},"maintainers":[{"email":"Christian.Murphy.42@gmail.com","name":"anonymous"},{"email":"denysdovhan@gmail.com","name":"anonymous"},{"email":"eush77@gmail.com","name":"anonymous"},{"email":"fazouanem3@gmail.com","name":"anonymous"},{"email":"david@spektrakel.de","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"lin90162@yahoo.co.jp","name":"anonymous"},{"email":"fluke8259@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"victor@draft.li","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"},{"email":"xuopled@gmail.com","name":"anonymous"},{"email":"zeke@sikelianos.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_6.0.2_1541866386966_0.536584704025622"},"_hasShrinkwrap":false},"6.0.3":{"name":"remark-parse","version":"6.0.3","description":"Markdown parser for remark","license":"MIT","keywords":["markdown","abstract","syntax","tree","ast","parse"],"homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"devDependencies":{"tape":"^4.9.1","unified":"^7.0.0","vfile":"^3.0.0"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@6.0.3","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-QbDXWN4HfKTUC0hHa4teU463KclLAnwpn/FBn87j9cKYJWWawbiLgMfP2Q4XwhxxuuuOxHlw+pSN0OKuJwyVvg==","shasum":"c99131052809da482108413f87b0ee7f52180a3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-6.0.3.tgz","fileCount":50,"unpackedSize":108627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7YK8CRA9TVsSAnZWagAAeXYP/ityY9sxGqsyVnArhfLw\nAI3hlAuiu6sadj+tVtDPZm2mTZNe2n2uPtIDvbLHLNp379Zlh2UZfXNhBtBO\n6j4Bz0anVhcrTt/vXtvvsMgpMbbR0n3qaSGg4RcISNDePcTg1dXKNzO0saeo\nxLpP/U8RFpjW15zeUHOocSPUhPDFJhL7ZKAjVKyPrUwzI9k5NhGqlgKNmbKk\n3Mclu3XY3NKv+zh+sKPNpTXd3xDn6CFhs5Esa5gmfJ62LUAXwgwDjSRnXpFv\nl9lMRGinvNyqvm3HQi3o3Ugf4/3DN5ZG5jKPxXkUFfZXooDa2uFFIIo+L0XT\ndvLAD6xnjAwp0TyovNVU9GGOKL6rHQd0saodTU2VUo6z8PA95/NshtA6mEjv\n9bi+jDX5aV5Vi0DCaX2T6epj+TlJ57QDUKSSuR2ADn3KlqU+qxtyT9R6OONo\nT9fgHxPCIEC/r7aSIrtfHvb1M3WVMqa2NHxjuZfjX+SmNtbWPplkt2jbu8ar\nWM9l6U/3LKhFH4cNZqxfLWEtbKs5caipmDszISeSU1ZfPp4cZLxSEAo5xk8n\nJfbC8wT53anhN3k4cQOM0vO8cLFtsuERbI5ewg76Ng/JH3sbuYYsxRCgxy3b\nM/ILKhJM9G9RL76unUUkCXHgD/ottHiSdpG8DohG/PVUIDfIV/YFXn4vRVRy\ndmk/\r\n=RdjZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAbG7S68oUDjY0JCyW5KNQRo4zYbGlhS0gCvUOihpbWQIhAIsCVhjBEBTmz9ohpuxl2F6FI+O/SNhvOxu5Ox/Ja23O"}]},"maintainers":[{"email":"Christian.Murphy.42@gmail.com","name":"anonymous"},{"email":"denysdovhan@gmail.com","name":"anonymous"},{"email":"eush77@gmail.com","name":"anonymous"},{"email":"fazouanem3@gmail.com","name":"anonymous"},{"email":"david@spektrakel.de","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"lin90162@yahoo.co.jp","name":"anonymous"},{"email":"fluke8259@gmail.com","name":"anonymous"},{"email":"sethvincent@gmail.com","name":"anonymous"},{"email":"victor@draft.li","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"},{"email":"xuopled@gmail.com","name":"anonymous"},{"email":"zeke@sikelianos.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_6.0.3_1542292155086_0.814654218935652"},"_hasShrinkwrap":false},"7.0.0":{"name":"remark-parse","version":"7.0.0","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@7.0.0","_nodeVersion":"12.2.0","_npmVersion":"6.10.1","dist":{"integrity":"sha512-UlfoqASKUnwSrzOcLSa7fwYdkpbeWwAs49YYdQmoYXK1TUJ2CvDBb3v8Lkt2GQzdPW9dWbjhteOsJJ27p1rNFg==","shasum":"2c4c420292eb2af6124161c931d1dfba9fbef940","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-7.0.0.tgz","fileCount":52,"unpackedSize":112040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMuwLCRA9TVsSAnZWagAA+JkP/iqhNLa5EMRqnBXYr/Aw\nu99Aa5m9Cl5hLf3nHm/D/K9HjiaBcyS3TqcE4vgI3G6T6ZyK3rNZ+6Ghb5Iv\nuEp85c1gD1UTopHab0dTVNfMDK4ciQzCe692G7ynmsz3NB1l+53/H7YtyqHz\nx5MDO4qgkS10sBpHvCyD4fFsoMl3UWxm70M2QPVbndyxuclMqgtQtviILyfk\nkO6wCJa5jZZweElgZ6nM2IOM8APRMbKcCVCtkLVCu08ZdWLgZyygUxmvf5mr\naIXBjeLAqTq/vhmsnH/HKmVA1oLjYV3jkQ4AVFoj+q94Ro98Khbvrwsq2CUb\ncnYbMlbpLu9Gr8LIdJJ3gHwkKwtykzH2VigmBhjhkPEPDU+JrbCNiPc3X11y\n8SUVXYeJbJx/cyLNljH45BYtkyNcTySRK0Bhj8j1YvvCx/1jkVSVxmDK2lsb\nM/X2H2ZDHz6qjNO2qxt5DYIPZiiEOyIjBzRK3ZJAtLJhqI/xvD9M4/cx3RJG\nMQhHm9d9EfAIaRNOfOYAOZolAJN65ctihv+2WVDZI+ChPgiJd6JriVSEkSuy\njRGDskAasEZpW+9Qd99tc0Wx2W1kchaqX06oefMDENd591JkccBSSSPenJE3\neqTaIUftBXGgWBMjM7oDgmpKRqPWavkd5gCAmpmRY9ga5rjIttR9/jLo3yx9\nryDR\r\n=3X9d\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID8TlKLwaIlQzNp7nHHdbSnYF0Bt8ApZ1xFNr5/kvPANAiBwzwSbbLezB2n9Rw2Tllu0jubZLaJZu7PcPHWcRLG3xA=="}]},"maintainers":[{"email":"Christian.Murphy.42@gmail.com","name":"anonymous"},{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"merlijn@soverin.net","name":"anonymous"},{"email":"victor@draft.li","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_7.0.0_1563618314314_0.1474669706193199"},"_hasShrinkwrap":false},"7.0.1":{"name":"remark-parse","version":"7.0.1","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@7.0.1","_nodeVersion":"12.2.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-WOZLa545jYXtSy+txza6ACudKWByQac4S2DmGk+tAGO/3XnVTOxwyCIxB7nTcLlk8Aayhcuf3cV1WV6U6L7/DQ==","shasum":"0c13d67e0d7b82c2ad2d8b6604ec5fae6c333c2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-7.0.1.tgz","fileCount":52,"unpackedSize":112727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRo70CRA9TVsSAnZWagAAaGUQAI7z/6SZhVn/2M1IgMkk\nAp/x0U89jw4//3HZ1R8EgMcEN/OGzpOX/A0ngLUcBfIssx5mj5BjsTZW5V4b\n8X6hd8V1PrUHHZn3rF5GcALJP8zV+cyer9UKNIBqRhG4Fly2mDu+S7tG4GyQ\nxTUqHqdXROBk2AgJRBpr112UgRgBLeKDElDLVNUfkIcSic6szqUsr7ANGKvO\nCV4IZ0vuQXRWWWIWl3I6aUnJzbALelaC2H51ZsagY3033qqb0zXmiCK32ady\nkk7PPVxRDOP5bzoqMSSn5VJ5P2hd/+92rDYEcIeVccAviiQEAcGu5ctto9KP\nNAxbscxRbaYB1d/euicgea3VsYRH8hzTHH7OPI3Y+mtJX92cuQeMd9GnT9eQ\nblTmyPKwPDeSxUoaIIuDXkUEr9mLvd3i6Uy5fBTwW3+FKb19PKsQpQXVsI6p\nO6MSSRTc7ZtsmfO/tTYFg88jc2p+JXtjaKbHWpuTjHlXNPcOrcdY+KoOoBUX\nWl9bUZ8JfwPE0LFCjnqOpEJ6dLNsxdXM50wsh24VEMZsP1XzbWmFCVTo4lcU\nhcI6mu2owvRWACtXAJSrlEDVxDapL2eElzxUVuNXppDwdb2ya74dGikq8xqg\nIDFxHWuGltd6sSEHJjCwmBrfDyjMy21igJbwsG0ebW4zdVpmHyWd08n0D+k5\nAxAR\r\n=2qbr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEdnrtLkWL9oDnjvHKN/Bth6klyOEsh/uB8k42PK3jmOAiEA3UMvbWx+wsiqCR0oSPF1ZFw0srmhNYReH6f42oBIZ74="}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_7.0.1_1564905203818_0.1270573468519416"},"_hasShrinkwrap":false},"7.0.2":{"name":"remark-parse","version":"7.0.2","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^1.1.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^1.0.0","vfile-location":"^2.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@7.0.2","_nodeVersion":"13.0.1","_npmVersion":"6.13.0","dist":{"integrity":"sha512-9+my0lQS80IQkYXsMA8Sg6m9QfXYJBnXjWYN5U+kFc5/n69t+XZVXU/ZBYr3cYH8FheEGf1v87rkFDhJ8bVgMA==","shasum":"41e7170d9c1d96c3d32cf1109600a9ed50dba7cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-7.0.2.tgz","fileCount":52,"unpackedSize":112820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxxfeCRA9TVsSAnZWagAAaBYQAIwguxoJp9Io+Bc3OdPO\nEw9mPzho96bKgKm02Tm33PDU4L/idZyUlIBMbj/YXgoAxOWgpD4VM1cIrMsT\nB5b1x8ClJ9K3Qw80HFC8syofkaG/C4txT6rDJBZMQ6m6FnlIX+DDGTdoPQy5\nAVsKUiHK0NLfi/n8eJnAqMxWDgGA3rfpbcH5rZobObRQSq1cerMnEhWYeycW\nIUZG3gJLBYir26lDg4Px94ppsDniTpKcn/N04yUMXE0UJyzeMySzeNMBFnRM\n+AFMqDNIUTxZ/1jGCaoLQPfIxpuP8k8rRSAFXs5aVpEn5U7bV2oDb4wO6sGJ\nlB00D8Xc+iaJonP7iwtSkUPM/5xboe+WXhH96SU2m8XAZqHgiEH5OnOu2x7t\nfbZAKytszOZYtb1rQotzrsydByXdcJrIeWo5P9J8lFovkXn3ellj79ZwHOYF\nO+5k2Mx+EtweZC+UzK89V4AQ+Xw2+vK/V1pIR16Dd0MZ2k1d6OCJZ12TLknz\njQBpE8Qcl0U8S17zTyQHd43ITl9PRkUjlXOkXhTgMCCi/3a1+Wtet2yVw3fe\nEpw2MbTCCYX6BJe64/F6yWnPpD97vtJhj1mLCgXHPAYuRn+O5P/z70HJX0Gy\n/gAHoHDpCA2uKF/IL66IOXvB4XvyudeyY6Y/aBK016ivht/7xDmcravT1riM\nz2E2\r\n=gBfN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRCxP5p3jsE9uVIEu5k6sVTtxyvWLNRx0QLZSUwzjSEQIgWwjS/pNqj5J10WVB7l3V+xP5bkfcL2jK4xcv4aNLmRQ="}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_7.0.2_1573328862093_0.13210166718362215"},"_hasShrinkwrap":false},"8.0.0":{"name":"remark-parse","version":"8.0.0","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"ccount":"^1.0.0","collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^2.0.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^2.0.0","vfile-location":"^3.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@8.0.0","_nodeVersion":"13.10.1","_npmVersion":"6.14.3","dist":{"integrity":"sha512-Ck14G1Ns/GEPXhSw6m1Uv28kMtVk63e59NyL+QlhBBwBdIUXROM6MPfBehPhW6TW2d73batMdZsKwuxl5i3tEA==","shasum":"0aaae4b49e607ee7e972a6cf688026f46bbf6d1a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-8.0.0.tgz","fileCount":54,"unpackedSize":121344,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegcGzCRA9TVsSAnZWagAA0OkP/RXh+1B6PCbC9K8+FwY1\njgw8s5S4L7ttBk4u4T/DJVwFT6POOnXv0eIbKJmIkiJWZqlESmPb9RkUoEXa\n17jjxR9GThvcqm5/kpfLgBGtCskPPvSsnduIk6nCJLOCUXdSnlOUvidsVols\nn7NV7rKZkvOkJ/yAWejZIpaffxAU+QRGvgAHW89Dqx/GZw4aTyED3fq2WIdR\nNTMYa+SwzpJhsx+bKR+VJrDV6AwvtA6ALfReKx5cepWx/pSy9X6jIN0lteIL\nCTFLFU5MsdmR6olKjfOYp3pBwmObBCI+qHm0dm1i0oXgZWK4yUawS1VrMRuA\nvxJieNQ+FqXioNgfy5SWqXqb8pnB02n4/SIkArAGBwnOXuaq7xqacEHLYrmO\nlwDEyoap1DUnkvxXMRIm6OhZpFs1G9aHK+/ln8KOainpPOfvl8lQ/CytIHnt\neDtw69t39lJnBVE1bX1r9lZY2Bn1lZFtxmnbvPP/jKAc3yfUx7p842KZDzyW\nG1CVM/qBIlaYG0SFGhBu0z8jAgUiEuFQ6qw49JA0jh46Naj0LO29RT0Yj70r\n7ZGrH07aev0K89aeoOSqTn2j1Dy0bJVIzeGCI1TkawQGuv+Ol0xlyhVBb0N5\n0rwUPxgOcxbpWNiRz4p1wsbgKbwTvO+5OJ7gWm5uhNzC+udRLeNSkArFxW5M\nFinO\r\n=KFO5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaWJMMLLrhRCYVTRfKKI5HwQ6PhkGnnJuBuimBz4nTRAIhAIWiyWM/qO2rB2BgB+6NimSKcPaUfbd6QwdTgELBAzus"}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_8.0.0_1585562034688_0.7157083831928075"},"_hasShrinkwrap":false},"8.0.1":{"name":"remark-parse","version":"8.0.1","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"ccount":"^1.0.0","collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^2.0.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^2.0.0","vfile-location":"^3.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@8.0.1","_nodeVersion":"13.10.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Ye/5W57tdQZWsfkuVyRq9SUWRgECHnDsMuyUMzdSKpTbNPkZeGtoYfsrkeSi4+Xyl0mhcPPddHITXPcCPHrl3w==","shasum":"7fc95d8f2b58fc6791cffb54803c763eb3756743","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-8.0.1.tgz","fileCount":53,"unpackedSize":115014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenASRCRA9TVsSAnZWagAAH+MP/3jzW6hMnErHM6qmT+17\nO3Sq3JcMxtOSBNLxFHv122zfE50ZtN6LhifeJf2EBi43Kakm/PEP200LRCaZ\noJ2KH7mz3tBuHYs7kdrr3you3Nv3LV6OxA4e3q34t3p6Zgif6fl3X7vneEDs\ngQ1ubq2RB/xKmhD8jlD6r/IoTesVbAefGmGAwsB/Y2urFIbBpVm2ibWtqPlw\nxADDy59UV6wHrRGzA8R4JYJFbtBflenTMyajXpuXybm1Ko5eIoP/oK6F9jjP\nAwEGTMOpqb2jaw7t139wIaj+6sl2PU+X0haoIi9lLi1bOPhfht87rYeFniSN\nu5QYxd57eOhgjwYeUSSUgJxNMQK0WU9pOSMDCWykWuwnwDrmvoZ18S3ehJWR\nyumxbuFjMbPJnYUDkvpbxA5hqYFOcD+dU7ObZSwW1kXVoV4vQhFLzIBsUZJy\nXEhBgUpOci0wjgKkdJj93Zx0NxdrMpwariwjiYO0C4gdSUJ7Q/MPL6mWrIsF\nvH65ZX1l/LB7l66m47YL/aQxHwNgAwLgyr3T0reWxcKH87/+IUb7jG8T3TjV\nAvubB2gJu1Ayp+TJbx3mOuv3jMs3/rVpDiwlpMgKyPun7mTPKFNH5jSd4DeD\nlKDNVbSKlS3ZZL0gGG8wYdqo++/fa++LF1P4XNp9pNEoxi5qoDjkRO9T81XG\nAxYJ\r\n=eazw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBk6uauTZatPvsc/nbXTFlK4RiNfqGA1ZWZP68PxOXnTAiEAqAHelqp4toXf5hQRhLiURkUboyLbqv1CY0Ax833Pisk="}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_8.0.1_1587283088961_0.6969481748047259"},"_hasShrinkwrap":false},"8.0.2":{"name":"remark-parse","version":"8.0.2","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/master/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"ccount":"^1.0.0","collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^2.0.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^2.0.0","vfile-location":"^3.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@8.0.2","_nodeVersion":"13.10.1","_npmVersion":"6.14.4","dist":{"integrity":"sha512-eMI6kMRjsAGpMXXBAywJwiwAse+KNpmt+BK55Oofy4KvBZEqUDj6mWbGLJZrujoPIPPxDXzn3T9baRlpsm2jnQ==","shasum":"5999bc0b9c2e3edc038800a64ff103d0890b318b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-8.0.2.tgz","fileCount":53,"unpackedSize":114709,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoZmxCRA9TVsSAnZWagAA6rUP/iaU46hhzLfb1UXq92oP\n3RBTLTmnhu+PvsOqUU2dMJaKpLUV+y+qKNm/sIeMuCkPBUsYYALPA3QMgl9h\nKOnmd+kS1eCVlYh8dmkYGkewlqTVw45hyKiCn52wg7dzVbkH1O4Cbj4Jjful\nFxo8nieJYT+ySBtEqlI4/SPfYSMa81jJcnYqPmYXpR2C0sRWCCQqH71P35c5\nD+nCg6DWQxppQk2DdxfIfoqFXbsqpJz5/lcvEvQZoG44NxoWpJP9YZGobENb\nHI8y1jtZk/ZBCG8Zqh4E+3R+i1vuFWgrv/CmTzhEtUNSLcz2tK0zxbKa8Roi\nJ+hBF940uJj35Qk7xGMoAcfl3X+elzrran0ZsxVUFLsVDdhkHB//Kvhkgvtu\nxmOi38n8c/bQrY4WZ3Fe8ybVVRv3ux5mco3gMuUQljzDu4A2BGOkQQNaAaaQ\nbsulojT5PhgwAm9UuZDAVmctRtHxjQjQYwLBiJs3yIg/3GcdpmIANjhwrKyZ\nYEKVx2USieaNCsefj9XZ2bMzdAylS5MZ7oy8lEawRPuJoz1q8aEAALYBFJzP\n67mQHowSoLyAYzYaWvWATwbdcpjREzm6sf+9kHng2u3FGBvN4LH0Bld6fAP/\nvpzS+m9Pqp4YvzZM2JnEAP2wjMPvuLZrmjnSg9nfqb6R1muEFaKoAyLRgQT9\n+Xkp\r\n=LXxR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGgMvaBJcTWf/ZOpZaEf2myqABRUkqODgf/2U9a5KIXaAiEAiXQN9FmlaiEQhPdwGJVCA2TfYXhNVGqYZ7sWbezPSxY="}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_8.0.2_1587648944473_0.7926975619009464"},"_hasShrinkwrap":false},"8.0.3":{"name":"remark-parse","version":"8.0.3","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/main/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"ccount":"^1.0.0","collapse-white-space":"^1.0.2","is-alphabetical":"^1.0.0","is-decimal":"^1.0.0","is-whitespace-character":"^1.0.0","is-word-character":"^1.0.0","markdown-escapes":"^1.0.0","parse-entities":"^2.0.0","repeat-string":"^1.5.4","state-toggle":"^1.0.0","trim":"0.0.1","trim-trailing-lines":"^1.0.0","unherit":"^1.0.4","unist-util-remove-position":"^2.0.0","vfile-location":"^3.0.0","xtend":"^4.0.1"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@8.0.3","_nodeVersion":"14.0.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==","shasum":"9c62aa3b35b79a486454c690472906075f40c7e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-8.0.3.tgz","fileCount":53,"unpackedSize":114881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEbK7CRA9TVsSAnZWagAAH8cP/jeh5GvI/VXMU4yoQ8ky\nZICyqXc73mGaY/SbDsJBCkykJB4K3gSZxBgRzq/l2ENXm9iUGDnkIOiHoUS6\nyeskxQavPv0NxTgc8VBmOX/7Whzy2DYOYaZJM49WWtrH0D4rZ7v80kb+rty3\n4cHh47raa840eUKKMnkHGNiBRi+f2tEX2KBg8Gldaezi8h0EpL/38aFTwbG9\nQMpKmSOD87m6l1y2C64m9VmEqRFq6neMCp3AQC5JPM+tbe3t3ff53FxTNzc4\nPzxJWGJ7kQB6Exu7grqkWtRLPkLZ1ZjaKSzpyD5zd+ZZwQaUI4JYJrhLCxef\n572/toJw4cni7Q/hYIqQlJpQOVv30H/FI0g2xab0PmNSQghOc/wlBURlGhpK\nf008HRrQ0ArAJBojSBkRhWYAki1Tda/cRKHtWUpubPIRSyPDqNbcOWp+XbAx\nIPkoZFwRGCVN5OyvgPr8Lr8jOZFew3hqyHExZyWrU3YmPf1riqCDTu/jVY0v\nOKS2pG7Zxk70sz/noRkO3l3p3fDLZf3XrgVk9995GYMJ3CZPdBwtNSuD39Ai\nJ0NBCibbbDM88UBR5upkvsWxWm4RgHbw67OcIuq19F/ZAjvaM019zJZo+pUY\n9fzxQ42r40k7pmrBexcRH1vbuAIKtoBqGxD2nDWVeB7N7yl5nu4yK91Vtr1w\nbSL8\r\n=ZiDn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGyEYcWJvVNmdj+hePhVEkzEbWtU9pmw0mMYFb9HNGaQIhAJ+Hl3GXsYvjUxX9bRY9+Nptkw/kkyGE9X7hKbaEXOmh"}]},"maintainers":[{"email":"johnotander@gmail.com","name":"anonymous"},{"email":"tituswormer@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_8.0.3_1594995386612_0.2608272818746402"},"_hasShrinkwrap":false},"9.0.0-alpha.0":{"name":"remark-parse","version":"9.0.0-alpha.0","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/main/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"mdast-util-from-markdown":"^0.7.0"},"scripts":{"test":"tape test.js"},"xo":false,"readme":"# remark-parse\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n[![Sponsors][sponsors-badge]][collective]\n[![Backers][backers-badge]][collective]\n[![Chat][chat-badge]][chat]\n\n[Parser][] for [**unified**][unified].\nParses Markdown to [**mdast**][mdast] syntax trees.\nBuilt on [micromark][].\nUsed in the [**remark** processor][remark] but can be used on its own as well.\nCan be [extended][extend] to change how Markdown is parsed.\n\n## Install\n\n[npm][]:\n\n```sh\nnpm install remark-parse\n```\n\n## Use\n\n```js\nvar unified = require('unified')\nvar createStream = require('unified-stream')\nvar markdown = require('remark-parse')\nvar remark2rehype = require('remark-rehype')\nvar html = require('rehype-stringify')\n\nvar processor = unified()\n  .use(markdown)\n  .use(remark2rehype)\n  .use(html)\n\nprocess.stdin.pipe(createStream(processor)).pipe(process.stdout)\n```\n\n[See **unified** for more examples »][unified]\n\n## API\n\n[See **unified** for API docs »][unified]\n\n### `processor().use(parse)`\n\nConfigure the `processor` to read Markdown as input and process\n[**mdast**][mdast] syntax trees.\n\n## Extending the parser\n\nSee [`micromark`][micromark] and [`mdast-util-from-markdown`][from-markdown].\nThen create a wrapper plugin such as `remark-gfm`.\n\n## Security\n\nAs Markdown is sometimes used for HTML, and improper use of HTML can open you up\nto a [cross-site scripting (XSS)][xss] attack, use of remark can also be unsafe.\nWhen going to HTML, use remark in combination with the [**rehype**][rehype]\necosystem, and use [`rehype-sanitize`][sanitize] to make the tree safe.\n\nUse of remark plugins could also open you up to other attacks.\nCarefully assess each plugin and the risks involved in using them.\n\n## Contribute\n\nSee [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways\nto get started.\nSee [`support.md`][support] for ways to get help.\nIdeas for new plugins and tools can be posted in [`remarkjs/ideas`][ideas].\n\nA curated list of awesome remark resources can be found in [**awesome\nremark**][awesome].\n\nThis project has a [code of conduct][coc].\nBy interacting with this repository, organization, or community you agree to\nabide by its terms.\n\n## Sponsor\n\nSupport this effort and give back by sponsoring on [OpenCollective][collective]!\n\n<!--lint ignore no-html-->\n\n<table>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://www.gatsbyjs.org\">Gatsby</a> 🥇<br><br>\n  <a href=\"https://www.gatsbyjs.org\"><img src=\"https://avatars1.githubusercontent.com/u/12551863?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://vercel.com\">Vercel</a> 🥇<br><br>\n  <a href=\"https://vercel.com\"><img src=\"https://avatars1.githubusercontent.com/u/14985020?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://www.netlify.com\">Netlify</a><br><br>\n  <!--OC has a sharper image-->\n  <a href=\"https://www.netlify.com\"><img src=\"https://images.opencollective.com/netlify/4087de2/logo/256.png\" width=\"128\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.holloway.com\">Holloway</a><br><br>\n  <a href=\"https://www.holloway.com\"><img src=\"https://avatars1.githubusercontent.com/u/35904294?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://themeisle.com\">ThemeIsle</a><br><br>\n  <a href=\"https://themeisle.com\"><img src=\"https://avatars1.githubusercontent.com/u/58979018?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://boostio.co\">BoostIO</a><br><br>\n  <a href=\"https://boostio.co\"><img src=\"https://avatars1.githubusercontent.com/u/13612118?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://expo.io\">Expo</a><br><br>\n  <a href=\"https://expo.io\"><img src=\"https://avatars1.githubusercontent.com/u/12504344?s=128&v=4\" width=\"64\"></a>\n</td>\n</tr>\n<tr valign=\"middle\">\n<td width=\"100%\" align=\"center\" colspan=\"10\">\n  <br>\n  <a href=\"https://opencollective.com/unified\"><strong>You?</strong></a>\n  <br><br>\n</td>\n</tr>\n</table>\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://img.shields.io/travis/remarkjs/remark.svg\n\n[build]: https://travis-ci.org/remarkjs/remark\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg\n\n[coverage]: https://codecov.io/github/remarkjs/remark\n\n[downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg\n\n[downloads]: https://www.npmjs.com/package/remark-parse\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-parse.svg\n\n[size]: https://bundlephobia.com/result?p=remark-parse\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[collective]: https://opencollective.com/unified\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[chat]: https://github.com/remarkjs/remark/discussions\n\n[health]: https://github.com/remarkjs/.github\n\n[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md\n\n[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md\n\n[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md\n\n[ideas]: https://github.com/remarkjs/ideas\n\n[awesome]: https://github.com/remarkjs/awesome-remark\n\n[license]: https://github.com/remarkjs/remark/blob/main/license\n\n[author]: https://wooorm.com\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[unified]: https://github.com/unifiedjs/unified\n\n[remark]: https://github.com/remarkjs/remark/tree/main/packages/remark\n\n[mdast]: https://github.com/syntax-tree/mdast\n\n[parser]: https://github.com/unifiedjs/unified#processorparser\n\n[extend]: #extending-the-parser\n\n[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting\n\n[rehype]: https://github.com/rehypejs/rehype\n\n[sanitize]: https://github.com/rehypejs/rehype-sanitize\n\n[micromark]: https://github.com/micromark/micromark\n\n[from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown\n","readmeFilename":"readme.md","_id":"remark-parse@9.0.0-alpha.0","_nodeVersion":"14.8.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-KoCtL+9QUBpr0rmvJsCHmz7GGHtlFrJ76nsT4xdj7KyBF2OXKayaxcIB/mpGh6TFrdRV6mljUE5M/r2OjhpYMg==","shasum":"477a1b64b4ce0777d78950404012dbb22e5db62f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-9.0.0-alpha.0.tgz","fileCount":4,"unpackedSize":11047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdwepCRA9TVsSAnZWagAA2wQQAIRWGmhgBWAl9HjJfJ7x\ndoqb+aAuSLX5Pr9GH8SI2UcPC6yc/tqCDSmfDcSEQ1tsZ/LDMyEwZqHNvyFt\n7EoxanzEE3DV+fdl5psVYo0ZNV5mNfHkCqNsfuoVwy5omVwnqbyxXVACCuLQ\nm3xpV29x2H5Ac1rKNr6K+1EC9VD6waiKV4Esorp1vCJnPRr1d4VgGblPNd97\nkwAK4te7NRpSLSeBd0oMFY2Zyac3ak8g6cV3z6wlCNPHXkuUBVOweqaJzYMK\nfIXonwsXAsbsz27JxOwNmcc4Fn6/nQrcy/nDSGCRugjc5Lh0qAomfFp6G1Ug\nG5WJ6K758gTtzcGSVs2tL1O8kjzjwK+pT0fqPZHKJw1MFZjEr/2AYKj88UNm\n+DsLprnYjR1T4tP4RxI3BBaQZaTkaM4i4rCKQjZegY59shuEDtWhX/CLXDP/\nnyO7DYEuE+OKiMBWCyPeV6X9/CN3r3+NvwGjf65HO4I/Dhg8Uft+xL0+nGAs\ntle/b4hcLNHm2LxTx8nMTx21tVf1Nh5kqk0IhmaYhgCNaJBk5fkYZ73Zge8M\nk0y5Ufw274Uj445Q2h9HEEk6e6MTf/zLysmEAmgFpUQhCcAW83FylX3Rs8LP\ngTNk7XwMN1Fu7FUFXnYxVkT3H9XJwZnOyLZB2ynU5aUMOQjixZ43R8CTssxr\nTvas\r\n=rU6o\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCqH/gShevm9oGksfQRdbH3T+2+IFY7shIlh5TBUb7NZAIhALZFpG1CzuWHKbFK23MN/JIdbIFExE0cypQSPsq+KiQq"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_9.0.0-alpha.0_1601636264750_0.14894880645039676"},"_hasShrinkwrap":false},"9.0.0-alpha.1":{"name":"remark-parse","version":"9.0.0-alpha.1","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/main/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"mdast-util-from-markdown":"^0.7.0"},"scripts":{"test":"tape test.js"},"xo":false,"readme":"# remark-parse\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n[![Sponsors][sponsors-badge]][collective]\n[![Backers][backers-badge]][collective]\n[![Chat][chat-badge]][chat]\n\n[Parser][] for [**unified**][unified].\nParses Markdown to [**mdast**][mdast] syntax trees.\nBuilt on [micromark][].\nUsed in the [**remark** processor][remark] but can be used on its own as well.\nCan be [extended][extend] to change how Markdown is parsed.\n\n## Install\n\n[npm][]:\n\n```sh\nnpm install remark-parse\n```\n\n## Use\n\n```js\nvar unified = require('unified')\nvar createStream = require('unified-stream')\nvar markdown = require('remark-parse')\nvar remark2rehype = require('remark-rehype')\nvar html = require('rehype-stringify')\n\nvar processor = unified()\n  .use(markdown)\n  .use(remark2rehype)\n  .use(html)\n\nprocess.stdin.pipe(createStream(processor)).pipe(process.stdout)\n```\n\n[See **unified** for more examples »][unified]\n\n## API\n\n[See **unified** for API docs »][unified]\n\n### `processor().use(parse)`\n\nConfigure the `processor` to read Markdown as input and process\n[**mdast**][mdast] syntax trees.\n\n## Extending the parser\n\nSee [`micromark`][micromark] and [`mdast-util-from-markdown`][from-markdown].\nThen create a wrapper plugin such as `remark-gfm`.\n\n## Security\n\nAs Markdown is sometimes used for HTML, and improper use of HTML can open you up\nto a [cross-site scripting (XSS)][xss] attack, use of remark can also be unsafe.\nWhen going to HTML, use remark in combination with the [**rehype**][rehype]\necosystem, and use [`rehype-sanitize`][sanitize] to make the tree safe.\n\nUse of remark plugins could also open you up to other attacks.\nCarefully assess each plugin and the risks involved in using them.\n\n## Contribute\n\nSee [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways\nto get started.\nSee [`support.md`][support] for ways to get help.\nIdeas for new plugins and tools can be posted in [`remarkjs/ideas`][ideas].\n\nA curated list of awesome remark resources can be found in [**awesome\nremark**][awesome].\n\nThis project has a [code of conduct][coc].\nBy interacting with this repository, organization, or community you agree to\nabide by its terms.\n\n## Sponsor\n\nSupport this effort and give back by sponsoring on [OpenCollective][collective]!\n\n<!--lint ignore no-html-->\n\n<table>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://www.gatsbyjs.org\">Gatsby</a> 🥇<br><br>\n  <a href=\"https://www.gatsbyjs.org\"><img src=\"https://avatars1.githubusercontent.com/u/12551863?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://vercel.com\">Vercel</a> 🥇<br><br>\n  <a href=\"https://vercel.com\"><img src=\"https://avatars1.githubusercontent.com/u/14985020?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" colspan=\"2\">\n  <a href=\"https://www.netlify.com\">Netlify</a><br><br>\n  <!--OC has a sharper image-->\n  <a href=\"https://www.netlify.com\"><img src=\"https://images.opencollective.com/netlify/4087de2/logo/256.png\" width=\"128\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.holloway.com\">Holloway</a><br><br>\n  <a href=\"https://www.holloway.com\"><img src=\"https://avatars1.githubusercontent.com/u/35904294?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://themeisle.com\">ThemeIsle</a><br><br>\n  <a href=\"https://themeisle.com\"><img src=\"https://avatars1.githubusercontent.com/u/58979018?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://boostio.co\">BoostIO</a><br><br>\n  <a href=\"https://boostio.co\"><img src=\"https://avatars1.githubusercontent.com/u/13612118?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://expo.io\">Expo</a><br><br>\n  <a href=\"https://expo.io\"><img src=\"https://avatars1.githubusercontent.com/u/12504344?s=128&v=4\" width=\"64\"></a>\n</td>\n</tr>\n<tr valign=\"middle\">\n<td width=\"100%\" align=\"center\" colspan=\"10\">\n  <br>\n  <a href=\"https://opencollective.com/unified\"><strong>You?</strong></a>\n  <br><br>\n</td>\n</tr>\n</table>\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://img.shields.io/travis/remarkjs/remark.svg\n\n[build]: https://travis-ci.org/remarkjs/remark\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg\n\n[coverage]: https://codecov.io/github/remarkjs/remark\n\n[downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg\n\n[downloads]: https://www.npmjs.com/package/remark-parse\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-parse.svg\n\n[size]: https://bundlephobia.com/result?p=remark-parse\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[collective]: https://opencollective.com/unified\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[chat]: https://github.com/remarkjs/remark/discussions\n\n[health]: https://github.com/remarkjs/.github\n\n[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md\n\n[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md\n\n[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md\n\n[ideas]: https://github.com/remarkjs/ideas\n\n[awesome]: https://github.com/remarkjs/awesome-remark\n\n[license]: https://github.com/remarkjs/remark/blob/main/license\n\n[author]: https://wooorm.com\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[unified]: https://github.com/unifiedjs/unified\n\n[remark]: https://github.com/remarkjs/remark/tree/main/packages/remark\n\n[mdast]: https://github.com/syntax-tree/mdast\n\n[parser]: https://github.com/unifiedjs/unified#processorparser\n\n[extend]: #extending-the-parser\n\n[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting\n\n[rehype]: https://github.com/rehypejs/rehype\n\n[sanitize]: https://github.com/rehypejs/rehype-sanitize\n\n[micromark]: https://github.com/micromark/micromark\n\n[from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown\n","readmeFilename":"readme.md","_id":"remark-parse@9.0.0-alpha.1","_nodeVersion":"14.8.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-8nbFmGcV1rYN6ILoyhdYL1Jh50ovzxa+vvnQEWoM5dNaFz19s5vfKaCa1PQCxK+4PksA5+GWHF2sIAqg1I7ytA==","shasum":"2a81b92a3b1432e4de46d077374f10874197d9ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-9.0.0-alpha.1.tgz","fileCount":4,"unpackedSize":11069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfeLNQCRA9TVsSAnZWagAADAEQAJHxr7uYtIavpwuxluRH\nNCZ78NJO20yBuh1PDvHQcmy2AWbhhjwdZBRsNPH0CvmQ9gRv8GGVwz/qGGO9\nVWI6eBgvhUVGJEZBrGLjce+XeQXRbePLqThh4xrBwwUD2Yp8bqRksEKA6bD9\nMnC/2oF+PbmHo2sY165jYniCQDPfuVW3YHXGbLL3XqnD1Xv+YoZEcKLMTGrl\nACAtWrqi7F2xfaufXeQ7DLCJR7FtDnwKfMynYTOvCTO0CeFzmqOHAQWJINIU\n9XEVjCNhb7jwesPcvDZZW4Px36MypQbICJ6a6mu6Of1zX2JWHJoKuj4cxrFa\nnaAwmtB7fbAD65UJT9vj5iLglHwQGA9jUdSMDtv8Oku94dQeWRjXUQUzeAyr\n/CSkudJUDuIAhgiebAVcgY8u8n+Ndjhb/5TuOgY0hY+22XiDDGjzfQ4VjE4q\nvsG+LNvkKLVEouk6sx4DARH2B9y9a/0ucN4u0rxEb4p5/Evt9B9K432NeLrZ\nBQOE/1yIFXkfLZE7bJPqF5vYHtfQ71XHXVf7wU7aJXLGR4WqXJ+2Z8ZHKjKe\nUv5Xk6yYyuh9j8jSGUh6upGH4SVw3CYpbbu1WRzViRuCOvDt/f9KdN5L7tCy\nkk4hS7BhbC1WmHK7mQ0F5QG4x1EC7tPHtKBEPHe3PPkvsoIJjtxia+MOelKl\ngA8C\r\n=braZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCs8fZmYDKpcKFMmyIsiaISOFP0mhN3BXvxa4KOwqonbgIhAOLN08+FsqqmmJHBKNn7Pr1lSTy3GYlH/RA+t8MCArYo"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_9.0.0-alpha.1_1601745743392_0.27355737618891274"},"_hasShrinkwrap":false},"9.0.0":{"name":"remark-parse","version":"9.0.0","description":"remark plugin to parse Markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"types":"types/index.d.ts","homepage":"https://remark.js.org","repository":{"type":"git","url":"https://github.com/remarkjs/remark/tree/main/packages/remark-parse"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"dependencies":{"mdast-util-from-markdown":"^0.8.0"},"scripts":{"test":"tape test.js"},"xo":false,"_id":"remark-parse@9.0.0","_nodeVersion":"14.13.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==","shasum":"4d20a299665880e4f4af5d90b7c7b8a935853640","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-9.0.0.tgz","fileCount":4,"unpackedSize":8251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhrtjCRA9TVsSAnZWagAA0iQP/jvuxY2rMd7aO1+gO8I7\nPp7Qwy7QK37Vi/srl1j7xa9Qfhb1eZw7NBPEIg2Oq1Ll09hW+h0dFvQKXHhL\nPwfFF3v25tJTSlXR+Jb3IHUK0TyD6GRFb9U+NAV+/X7Gy37oQFUjvioZOQWJ\nYr3ecXD26nx3F/l3hNESpOq7QLw8sKIJjXNMqUEKf3fwQkhI4/X+nJjwWRKm\nBRuczRX/YMDtYJovRk7FGRzUOw9PEsWFUX+Y0XvZ6TzX3F3L6oSeKiHF/wfI\nqq3A7MFfd2M/HQ3kfB9Dc0BKAjx2fYQhw6CTX8/5vmh9OIg240FWq2hiVCAk\nl5T7KKjt43T6HWweXm+UIXpTjWr1V7ot7nERPy0tj5qH60ly1+jV1nE+gmAv\nZ9wnBILiX9WpCk9N+MYnRhleBTyBPIb0dXaSpOFgJLkLzopAclNYw9u7HO1R\nKS6h3uH1SVPijQqI+ZUWXz8qR1mjt6S9yxuJt9fo/KwK4NP687HiNLsCI/8s\nMjzEyxfzmFAvQ5PgdoWdsjNE5Sv65niXvmOv4ma7sDWBqu2wUWKUdyyQ6I/y\nt7DO1c0DdTJVemnFMt1Zvb5X7unWCUfarcJr82jRiH2dDGKGgSa6kD7fu+Fk\nNV21liOTJ2OWI3q2+T3aVpukvFI8zA9IbQQKKZvvEmwB0Hf17vRMVQrgZ9Rr\n0/4f\r\n=ntXi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDi5FHrLW1w4iG6wVjNp69R/BZSZIJVUiS+0dqHWUQw0AIhAMn5zitAffoa3+rmYrTEmZp0OKtQv9iMuSFCx7SrIaXz"}]},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_9.0.0_1602665315185_0.6771658836224153"},"_hasShrinkwrap":false},"10.0.0":{"name":"remark-parse","version":"10.0.0","description":"remark plugin to parse markdown","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"homepage":"https://remark.js.org","repository":{"type":"git","url":"git+https://github.com/remarkjs/remark.git#main"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"@types/mdast":"^3.0.0","mdast-util-from-markdown":"^1.0.0","unified":"^10.0.0"},"scripts":{"test":"node --conditions development test.js","build":"rimraf \"test.d.ts\" \"lib/**/*.d.ts\" && tsc && type-coverage"},"xo":false,"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true},"_id":"remark-parse@10.0.0","_nodeVersion":"16.6.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-07ei47p2Xl7Bqbn9H2VYQYirnAFJPwdMuypdozWsSbnmrkgA2e2sZLZdnDNrrsxR4onmIzH/J6KXqKxCuqHtPQ==","shasum":"65e2b2b34d8581d36b97f12a2926bb2126961cb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-10.0.0.tgz","fileCount":7,"unpackedSize":10827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCSKzCRA9TVsSAnZWagAA3EcP/3rr+LAILO5BfhSw//KL\ngSOA/bSivKNOPch50fIzwTYH7FINmU8rz/MlUXkarhGC6O3DnNc40RIjivLf\nU76vhVGlncNcinRGhJt0uXvDqxNfSHKppLJQi6A4ddFyxEPaoV8JJXBV1DrD\nDG7kIh2by8Tm2s7vnA2gjXRL6m/rvUAMjfU5Z+FCyUjJ9ZM0sYwi7WIq0Fr1\ngk28cpqHcRxjm8bnRs7Sdt4cYiRhgQPhp1fK/fcJJmaHzKxCFuX1XwoER8Ja\nR9yVJnn/QVgtSWVjJs+LJmy0cvhJt+APa98MEc5X09zveoVovwWTCjPh5jVb\nIyAcT0uw8/aRar6r8jcNpCtdvo5chtHncyl9bgyYHf2DNxilWL+b/WJyzq+R\nm1CgoSLVT24OsPXZPU0ENl9sJcQn0dk6IEzYnPAWdcftm6TL4DfuRxN6IsDP\nDJpmRQnn0zBCFagUPHPex6tp1yGjhTDC9BC1O0RIcy84abjow7h5IlCQHvR/\nn75hpVItD9ow17olk8r1WlWtFTa6owfdwYO01ANW0Lu+mVTL44Ukd6uWtK2f\nTIHZcaF1EHeABbutQqi1phSNOPWrcB5mtPWZPkg7Og6rNNTmBNYS6m8w+R6D\npKDYxs/Mq9Mf96UWDd2MW5B1nbdHjl3Saud2Yq4ZfL64cBocLrIisWnV8nq0\n6nBA\r\n=tJZD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCaGh1432UX0n/PxWAT6mVIiNWv/R4+CAdZEeje55B/YgIgVMo4H+Z/zoxhmBNt9ADGA3++9S51uUoQy0lnnaQHs5k="}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_10.0.0_1627988658958_0.9501302324331333"},"_hasShrinkwrap":false},"10.0.1":{"name":"remark-parse","version":"10.0.1","description":"remark plugin to add support for parsing markdown input","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"homepage":"https://remark.js.org","repository":{"type":"git","url":"git+https://github.com/remarkjs/remark.git#main"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"@types/mdast":"^3.0.0","mdast-util-from-markdown":"^1.0.0","unified":"^10.0.0"},"scripts":{"test":"node --conditions development test.js","build":"rimraf \"test.d.ts\" \"lib/**/*.d.ts\" && tsc && type-coverage"},"xo":false,"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true},"gitHead":"5a2a5c98547f833b57dea3d357a84a62d5a2ed92","_id":"remark-parse@10.0.1","_nodeVersion":"17.0.1","_npmVersion":"8.1.0","dist":{"integrity":"sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==","shasum":"6f60ae53edbf0cf38ea223fe643db64d112e0775","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-10.0.1.tgz","fileCount":7,"unpackedSize":16615,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlpqCCRA9TVsSAnZWagAAc44P+QBem/DVNArCf2/AO/zQ\nVFkLa8hlFZMTHZ/4HHNxtUhjNmvs23jtW67YPvoNBEYDkFe37VfDymMr/6N8\n31RjAwvWQA8DJRTsqPfUNKcKlUP1EovRHOixLxtV0ZfvRWrcCqHBdI1brQa2\nqxXULXTJC6t3U5pRlyKik8Xb285krOuylIx0r9CB/scnMwPIwVEXr2h2cqk9\nTuX5qj2k2s0x3oSH92ebWXHdI4ySXOelj0JGvVlyLSJrE7aKkPyoGCW8o5A8\nOpNMvlkNBAe7z0UZFM4iq7FkaIYUVGHpHabSv7pE03Xeq7a/I+snClSg4/1y\na2CgOo4+JxVXSF/JXeOw7+X1+Vj8AAdSBf9DWNB3RiwDFn7DkPNo7ujEHVI6\ngqe4vlHzSY6YKsRF84+0FDaz+Jc/kjGsKEu8cp7KdY+b001L7f1moI+rA7bo\neClmijUvmFeJ+5LFcTidrIwIp3+iiE7h8e5LM5KV/n6ebLRF5DwAbk2jmMtK\n+/R6FlqnMM4lqobwKNx8Mx8eG2aF+8qUeFQeApUTUKK3o+rcjUxviEoV4NQU\nUaxdvQix3jiuN/Hrz5nRrvLYeYFKKtj4Eu/TMK3Af/jpvXu6Co06N+mjtqBd\nEmjYExny5ihtda3g2YWgO3cIhQTJfkLLpFBaREO+eX6anRWEZvo65BsdNImU\nGQ/p\r\n=OK+0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBGo1CKWS3SQtrc+j9CjLSF16DTLxuJliGtYAXjdJH9pAiAZaj6aDWoq1UJzNQ+gN6zUrZ/DfLcIg/qQQlpN+N5UAw=="}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_10.0.1_1637259906192_0.24743013151646553"},"_hasShrinkwrap":false},"10.0.2":{"name":"remark-parse","version":"10.0.2","description":"remark plugin to add support for parsing markdown input","license":"MIT","keywords":["unified","remark","remark-plugin","plugin","markdown","mdast","abstract","syntax","tree","ast","parse"],"homepage":"https://remark.js.org","repository":{"type":"git","url":"git+https://github.com/remarkjs/remark.git#main"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"@types/mdast":"^3.0.0","mdast-util-from-markdown":"^1.0.0","unified":"^10.0.0"},"scripts":{"test":"node --conditions development test.js"},"xo":false,"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true},"gitHead":"4178acc4c6ef7a1b95533c76dabd3de066c54160","_id":"remark-parse@10.0.2","_nodeVersion":"20.0.0","_npmVersion":"9.6.4","dist":{"integrity":"sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==","shasum":"ca241fde8751c2158933f031a4e3efbaeb8bc262","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-10.0.2.tgz","fileCount":7,"unpackedSize":16789,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5aNmW5/hPLAoYYA9ApHVsZSaE/ndZWI2ePcT3ng6FdgIhAKs86Y/H5T8xSXuDwiP/0cbP1sNIJz0JzqctZkEbeTBi"}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_10.0.2_1684257589908_0.7341858129297563"},"_hasShrinkwrap":false},"11.0.0":{"name":"remark-parse","version":"11.0.0","description":"remark plugin to add support for parsing markdown input","license":"MIT","keywords":["abstract","ast","markdown","mdast","parse","plugin","remark","remark-plugin","syntax","tree","unified"],"homepage":"https://remark.js.org","repository":{"type":"git","url":"git+https://github.com/remarkjs/remark.git#main"},"bugs":{"url":"https://github.com/remarkjs/remark/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"sideEffects":false,"type":"module","exports":"./index.js","dependencies":{"@types/mdast":"^4.0.0","mdast-util-from-markdown":"^2.0.0","micromark-util-types":"^2.0.0","unified":"^11.0.0"},"scripts":{},"typeCoverage":{"atLeast":100,"detail":true,"ignoreCatch":true,"strict":true},"xo":{"overrides":[{"files":["**/*.ts"],"rules":{"@typescript-eslint/ban-types":"off","@typescript-eslint/consistent-type-definitions":"off"}}],"prettier":true,"rules":{"unicorn/no-this-assignment":"off"}},"_id":"remark-parse@11.0.0","gitHead":"de740c7d52c0278bbc36d8eac218ab74995c6420","types":"./index.d.ts","_nodeVersion":"20.5.1","_npmVersion":"9.8.0","dist":{"integrity":"sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==","shasum":"aa60743fcb37ebf6b069204eb4da304e40db45a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-parse/-/remark-parse-11.0.0.tgz","fileCount":7,"unpackedSize":19481,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVX1lA/CtSVliaYIHwRY9OmEk+GfFgXP2hOxHaSoiM3gIhANCWI7FgDCB3BVOulXBnfpaKIDP4hXBYe3WtTbu5fqTo"}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/remark-parse_11.0.0_1695030148011_0.6291431606032614"},"_hasShrinkwrap":false}},"name":"remark-parse","time":{"modified":"2023-11-20T10:43:28.469Z","created":"2016-06-12T12:54:39.132Z","0.0.0":"2016-06-12T12:54:39.132Z","1.0.0":"2016-06-12T21:38:36.701Z","1.1.0":"2016-08-09T15:58:59.815Z","2.0.0":"2016-08-21T18:36:28.746Z","2.0.1":"2016-08-22T21:28:17.000Z","2.0.2":"2016-10-15T11:04:22.619Z","2.1.0":"2016-10-27T21:44:59.465Z","2.2.0":"2016-10-27T21:50:54.947Z","2.3.0":"2017-02-20T18:36:55.951Z","3.0.0":"2017-02-23T14:24:41.369Z","3.0.1":"2017-04-29T12:13:26.408Z","4.0.0":"2017-07-20T19:55:53.045Z","5.0.0":"2018-01-20T13:11:10.597Z","6.0.0":"2018-10-21T19:57:07.605Z","6.0.1":"2018-10-26T11:20:07.392Z","6.0.2":"2018-11-10T16:13:07.117Z","6.0.3":"2018-11-15T14:29:15.210Z","7.0.0":"2019-07-20T10:25:14.476Z","7.0.1":"2019-08-04T07:53:23.925Z","7.0.2":"2019-11-09T19:47:42.204Z","8.0.0":"2020-03-30T09:53:54.834Z","8.0.1":"2020-04-19T07:58:09.050Z","8.0.2":"2020-04-23T13:35:44.618Z","8.0.3":"2020-07-17T14:16:26.753Z","9.0.0-alpha.0":"2020-10-02T10:57:44.880Z","9.0.0-alpha.1":"2020-10-03T17:22:23.561Z","9.0.0":"2020-10-14T08:48:35.392Z","10.0.0":"2021-08-03T11:04:19.280Z","10.0.1":"2021-11-18T18:25:06.350Z","10.0.2":"2023-05-16T17:19:50.043Z","11.0.0":"2023-09-18T09:42:28.170Z"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Eugene Sharygin","email":"eush77@gmail.com"},{"name":"Junyoung Choi","email":"fluke8259@gmail.com"},{"name":"Elijah Hamovitz","email":"elijahhamovitz@gmail.com"},{"name":"Ika","email":"ikatyang@gmail.com"}],"readmeFilename":"readme.md","homepage":"https://remark.js.org"}