create-docusaurus 0.0.0-4376 → 0.0.0-4383
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/templates/classic/package.json +3 -3
- package/templates/classic-typescript/package.json +4 -4
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/CHANGELOG.md +18 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/LICENSE +21 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/README.md +91 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/camel-case.js +13 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/extract.js +462 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/get-template.js +7 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/index.js +6 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/literal.js +23 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object-parse.js +15 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object-parser.js +357 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object-stringifier.js +153 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object-stringify.js +9 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object-syntax.js +11 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/object.js +24 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/package.json +119 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-parse.js +19 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-parser-helper.js +260 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-parser.js +20 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-safe-parse.js +19 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-safe-parser.js +21 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-stringifier.js +23 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-stringify.js +9 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/template-tokenize.js +67 -0
- package/templates/facebook/node_modules/@stylelint/postcss-css-in-js/un-camel-case.js +13 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/CHANGELOG.md +13 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/LICENSE +21 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/README.md +92 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/extract.js +42 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/index.js +5 -0
- package/templates/facebook/node_modules/@stylelint/postcss-markdown/package.json +63 -0
- package/templates/facebook/node_modules/autoprefixer/LICENSE +20 -0
- package/templates/facebook/node_modules/autoprefixer/README.md +73 -0
- package/templates/facebook/node_modules/autoprefixer/bin/autoprefixer +22 -0
- package/templates/facebook/node_modules/autoprefixer/data/prefixes.js +714 -0
- package/templates/facebook/node_modules/autoprefixer/lib/at-rule.js +62 -0
- package/templates/facebook/node_modules/autoprefixer/lib/autoprefixer.js +150 -0
- package/templates/facebook/node_modules/autoprefixer/lib/brackets.js +64 -0
- package/templates/facebook/node_modules/autoprefixer/lib/browsers.js +96 -0
- package/templates/facebook/node_modules/autoprefixer/lib/declaration.js +243 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/align-content.js +79 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/align-items.js +76 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/align-self.js +84 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/animation.js +35 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/appearance.js +39 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/backdrop-filter.js +35 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/background-clip.js +41 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/background-size.js +38 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/block-logical.js +48 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/border-image.js +33 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/border-radius.js +62 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/break-props.js +76 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/color-adjust.js +40 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/cross-fade.js +54 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/display-flex.js +94 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/display-grid.js +41 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/filter-value.js +31 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/filter.js +33 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-basis.js +72 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-direction.js +108 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-flow.js +81 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-grow.js +57 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-shrink.js +72 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-spec.js +22 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex-wrap.js +40 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/flex.js +85 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/fullscreen.js +40 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/gradient.js +519 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-area.js +52 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-column-align.js +48 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-end.js +62 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-row-align.js +48 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-row-column.js +52 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-rows-columns.js +149 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-start.js +55 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-template-areas.js +101 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-template.js +90 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/grid-utils.js +1123 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/image-rendering.js +71 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/image-set.js +38 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/inline-logical.js +40 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/intrinsic.js +74 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/justify-content.js +85 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/mask-border.js +46 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/mask-composite.js +104 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/order.js +72 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/overscroll-behavior.js +54 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/pixelated.js +58 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/place-self.js +55 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/placeholder-shown.js +36 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/placeholder.js +56 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/text-decoration-skip-ink.js +38 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/text-decoration.js +36 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/text-emphasis-position.js +33 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/transform-decl.js +105 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/user-select.js +36 -0
- package/templates/facebook/node_modules/autoprefixer/lib/hacks/writing-mode.js +59 -0
- package/templates/facebook/node_modules/autoprefixer/lib/info.js +149 -0
- package/templates/facebook/node_modules/autoprefixer/lib/old-selector.js +88 -0
- package/templates/facebook/node_modules/autoprefixer/lib/old-value.js +30 -0
- package/templates/facebook/node_modules/autoprefixer/lib/prefixer.js +167 -0
- package/templates/facebook/node_modules/autoprefixer/lib/prefixes.js +471 -0
- package/templates/facebook/node_modules/autoprefixer/lib/processor.js +703 -0
- package/templates/facebook/node_modules/autoprefixer/lib/resolution.js +125 -0
- package/templates/facebook/node_modules/autoprefixer/lib/selector.js +198 -0
- package/templates/facebook/node_modules/autoprefixer/lib/supports.js +346 -0
- package/templates/facebook/node_modules/autoprefixer/lib/transition.js +411 -0
- package/templates/facebook/node_modules/autoprefixer/lib/utils.js +103 -0
- package/templates/facebook/node_modules/autoprefixer/lib/value.js +164 -0
- package/templates/facebook/node_modules/autoprefixer/package.json +30 -0
- package/templates/facebook/node_modules/hosted-git-info/CHANGELOG.md +185 -0
- package/templates/facebook/node_modules/hosted-git-info/LICENSE +13 -0
- package/templates/facebook/node_modules/hosted-git-info/README.md +133 -0
- package/templates/facebook/node_modules/hosted-git-info/git-host-info.js +154 -0
- package/templates/facebook/node_modules/hosted-git-info/git-host.js +110 -0
- package/templates/facebook/node_modules/hosted-git-info/index.js +237 -0
- package/templates/facebook/node_modules/hosted-git-info/package.json +52 -0
- package/templates/facebook/node_modules/known-css-properties/LICENSE +21 -0
- package/templates/facebook/node_modules/known-css-properties/README.md +48 -0
- package/templates/facebook/node_modules/known-css-properties/data/all.json +1144 -0
- package/templates/facebook/node_modules/known-css-properties/index.js +1 -0
- package/templates/facebook/node_modules/known-css-properties/package.json +56 -0
- package/templates/facebook/node_modules/lru-cache/LICENSE +15 -0
- package/templates/facebook/node_modules/lru-cache/README.md +166 -0
- package/templates/facebook/node_modules/lru-cache/index.js +334 -0
- package/templates/facebook/node_modules/lru-cache/package.json +34 -0
- package/templates/facebook/node_modules/meow/index.d.ts +315 -0
- package/templates/facebook/node_modules/meow/index.js +236 -0
- package/templates/facebook/node_modules/meow/license +9 -0
- package/templates/facebook/node_modules/meow/package.json +77 -0
- package/templates/facebook/node_modules/meow/readme.md +352 -0
- package/templates/facebook/node_modules/normalize-package-data/AUTHORS +4 -0
- package/templates/facebook/node_modules/normalize-package-data/LICENSE +15 -0
- package/templates/facebook/node_modules/normalize-package-data/README.md +108 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/extract_description.js +22 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/fixer.js +474 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/normalize.js +48 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/templates/facebook/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/templates/facebook/node_modules/normalize-package-data/package.json +41 -0
- package/templates/facebook/node_modules/picocolors/LICENSE +15 -0
- package/templates/facebook/node_modules/picocolors/README.md +23 -0
- package/templates/facebook/node_modules/picocolors/package.json +25 -0
- package/templates/facebook/node_modules/picocolors/picocolors.browser.js +4 -0
- package/templates/facebook/node_modules/picocolors/picocolors.d.ts +5 -0
- package/templates/facebook/node_modules/picocolors/picocolors.js +60 -0
- package/templates/facebook/node_modules/picocolors/types.ts +30 -0
- package/templates/facebook/node_modules/postcss/LICENSE +20 -0
- package/templates/facebook/node_modules/postcss/README.md +43 -0
- package/templates/facebook/node_modules/postcss/lib/at-rule.js +127 -0
- package/templates/facebook/node_modules/postcss/lib/comment.js +55 -0
- package/templates/facebook/node_modules/postcss/lib/container.js +774 -0
- package/templates/facebook/node_modules/postcss/lib/css-syntax-error.js +296 -0
- package/templates/facebook/node_modules/postcss/lib/declaration.js +96 -0
- package/templates/facebook/node_modules/postcss/lib/input.js +214 -0
- package/templates/facebook/node_modules/postcss/lib/lazy-result.js +437 -0
- package/templates/facebook/node_modules/postcss/lib/list.js +93 -0
- package/templates/facebook/node_modules/postcss/lib/map-generator.js +347 -0
- package/templates/facebook/node_modules/postcss/lib/node.js +606 -0
- package/templates/facebook/node_modules/postcss/lib/parse.js +40 -0
- package/templates/facebook/node_modules/postcss/lib/parser.js +609 -0
- package/templates/facebook/node_modules/postcss/lib/postcss.d.ts +1283 -0
- package/templates/facebook/node_modules/postcss/lib/postcss.js +285 -0
- package/templates/facebook/node_modules/postcss/lib/previous-map.js +172 -0
- package/templates/facebook/node_modules/postcss/lib/processor.js +264 -0
- package/templates/facebook/node_modules/postcss/lib/result.js +213 -0
- package/templates/facebook/node_modules/postcss/lib/root.js +122 -0
- package/templates/facebook/node_modules/postcss/lib/rule.js +116 -0
- package/templates/facebook/node_modules/postcss/lib/stringifier.js +362 -0
- package/templates/facebook/node_modules/postcss/lib/stringify.js +18 -0
- package/templates/facebook/node_modules/postcss/lib/terminal-highlight.js +84 -0
- package/templates/facebook/node_modules/postcss/lib/tokenize.js +295 -0
- package/templates/facebook/node_modules/postcss/lib/vendor.js +53 -0
- package/templates/facebook/node_modules/postcss/lib/warn-once.js +17 -0
- package/templates/facebook/node_modules/postcss/lib/warning.js +131 -0
- package/templates/facebook/node_modules/postcss/package.json +37 -0
- package/templates/facebook/node_modules/postcss-html/LICENSE +21 -0
- package/templates/facebook/node_modules/postcss-html/README.md +78 -0
- package/templates/facebook/node_modules/postcss-html/extract.js +122 -0
- package/templates/facebook/node_modules/postcss-html/index.js +5 -0
- package/templates/facebook/node_modules/postcss-html/package.json +63 -0
- package/templates/facebook/node_modules/postcss-html/template-parse.js +14 -0
- package/templates/facebook/node_modules/postcss-html/template-parser.js +9 -0
- package/templates/facebook/node_modules/postcss-html/template-safe-parse.js +14 -0
- package/templates/facebook/node_modules/postcss-html/template-safe-parser.js +9 -0
- package/templates/facebook/node_modules/postcss-html/template-tokenize.js +49 -0
- package/templates/facebook/node_modules/postcss-safe-parser/CHANGELOG.md +51 -0
- package/templates/facebook/node_modules/postcss-safe-parser/LICENSE +20 -0
- package/templates/facebook/node_modules/postcss-safe-parser/README.md +33 -0
- package/templates/facebook/node_modules/postcss-safe-parser/lib/safe-parse.js +13 -0
- package/templates/facebook/node_modules/postcss-safe-parser/lib/safe-parser.js +115 -0
- package/templates/facebook/node_modules/postcss-safe-parser/package.json +102 -0
- package/templates/facebook/node_modules/postcss-syntax/LICENSE +21 -0
- package/templates/facebook/node_modules/postcss-syntax/README.md +85 -0
- package/templates/facebook/node_modules/postcss-syntax/document.js +41 -0
- package/templates/facebook/node_modules/postcss-syntax/get-lang.js +111 -0
- package/templates/facebook/node_modules/postcss-syntax/get-syntax.js +63 -0
- package/templates/facebook/node_modules/postcss-syntax/index.js +26 -0
- package/templates/facebook/node_modules/postcss-syntax/load-syntax.js +23 -0
- package/templates/facebook/node_modules/postcss-syntax/normal-opts.js +11 -0
- package/templates/facebook/node_modules/postcss-syntax/package.json +102 -0
- package/templates/facebook/node_modules/postcss-syntax/parse-style.js +127 -0
- package/templates/facebook/node_modules/postcss-syntax/parse.js +34 -0
- package/templates/facebook/node_modules/postcss-syntax/parser.js +18 -0
- package/templates/facebook/node_modules/postcss-syntax/patch-postcss.js +77 -0
- package/templates/facebook/node_modules/postcss-syntax/processor.js +29 -0
- package/templates/facebook/node_modules/postcss-syntax/stringify.js +20 -0
- package/templates/facebook/node_modules/postcss-syntax/syntax.js +37 -0
- package/templates/facebook/node_modules/remark/index.js +7 -0
- package/templates/facebook/node_modules/remark/package.json +46 -0
- package/templates/facebook/node_modules/remark/readme.md +260 -0
- package/templates/facebook/node_modules/remark/types/index.d.ts +19 -0
- package/templates/facebook/node_modules/remark-parse/index.js +24 -0
- package/templates/facebook/node_modules/remark-parse/package.json +46 -0
- package/templates/facebook/node_modules/remark-parse/readme.md +197 -0
- package/templates/facebook/node_modules/remark-parse/types/index.d.ts +14 -0
- package/templates/facebook/node_modules/remark-stringify/index.js +23 -0
- package/templates/facebook/node_modules/remark-stringify/license +22 -0
- package/templates/facebook/node_modules/remark-stringify/package.json +46 -0
- package/templates/facebook/node_modules/remark-stringify/readme.md +217 -0
- package/templates/facebook/node_modules/remark-stringify/types/index.d.ts +14 -0
- package/templates/facebook/node_modules/stylelint/CHANGELOG.md +1701 -0
- package/templates/facebook/node_modules/stylelint/CONTRIBUTING.md +81 -0
- package/templates/facebook/node_modules/stylelint/LICENSE +20 -0
- package/templates/facebook/node_modules/stylelint/README.md +48 -0
- package/templates/facebook/node_modules/stylelint/bin/stylelint.js +8 -0
- package/templates/facebook/node_modules/stylelint/docs/about/linting.md +34 -0
- package/templates/facebook/node_modules/stylelint/docs/about/semantic-versioning.md +37 -0
- package/templates/facebook/node_modules/stylelint/docs/about/syntaxes.md +18 -0
- package/templates/facebook/node_modules/stylelint/docs/about/vision.md +63 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/formatters.md +77 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/plugins.md +324 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/processors.md +28 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/rules.md +244 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/syntaxes.md +35 -0
- package/templates/facebook/node_modules/stylelint/docs/developer-guide/system-tests.md +23 -0
- package/templates/facebook/node_modules/stylelint/docs/maintainer-guide/issues.md +94 -0
- package/templates/facebook/node_modules/stylelint/docs/maintainer-guide/pull-requests.md +33 -0
- package/templates/facebook/node_modules/stylelint/docs/maintainer-guide/releases.md +47 -0
- package/templates/facebook/node_modules/stylelint/docs/toc.md +37 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/configure.md +420 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/errors.md +29 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/get-started.md +55 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/ignore-code.md +88 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/integrations/editor.md +12 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/integrations/other.md +19 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/integrations/task-runner.md +10 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/rules/about.md +203 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/rules/combine.md +360 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/rules/list.md +399 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/rules/regex.md +29 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/usage/cli.md +195 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/usage/node-api.md +169 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/usage/options.md +208 -0
- package/templates/facebook/node_modules/stylelint/docs/user-guide/usage/postcss-plugin.md +84 -0
- package/templates/facebook/node_modules/stylelint/lib/assignDisabledRanges.js +407 -0
- package/templates/facebook/node_modules/stylelint/lib/augmentConfig.js +359 -0
- package/templates/facebook/node_modules/stylelint/lib/cli.js +544 -0
- package/templates/facebook/node_modules/stylelint/lib/createPartialStylelintResult.js +103 -0
- package/templates/facebook/node_modules/stylelint/lib/createPlugin.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/createStylelint.js +88 -0
- package/templates/facebook/node_modules/stylelint/lib/createStylelintResult.js +39 -0
- package/templates/facebook/node_modules/stylelint/lib/descriptionlessDisables.js +62 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/compactFormatter.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/index.js +12 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/jsonFormatter.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/stringFormatter.js +225 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/tapFormatter.js +39 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/unixFormatter.js +26 -0
- package/templates/facebook/node_modules/stylelint/lib/formatters/verboseFormatter.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/getConfigForFile.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/getPostcssResult.js +182 -0
- package/templates/facebook/node_modules/stylelint/lib/index.js +33 -0
- package/templates/facebook/node_modules/stylelint/lib/invalidScopeDisables.js +50 -0
- package/templates/facebook/node_modules/stylelint/lib/isPathIgnored.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/lintPostcssResult.js +134 -0
- package/templates/facebook/node_modules/stylelint/lib/lintSource.js +133 -0
- package/templates/facebook/node_modules/stylelint/lib/needlessDisables.js +110 -0
- package/templates/facebook/node_modules/stylelint/lib/normalizeAllRuleSettings.js +41 -0
- package/templates/facebook/node_modules/stylelint/lib/normalizeRuleSettings.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/postcssPlugin.js +25 -0
- package/templates/facebook/node_modules/stylelint/lib/prepareReturnValue.js +59 -0
- package/templates/facebook/node_modules/stylelint/lib/printConfig.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/keywordSets.js +690 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/mathFunctions.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/namedColorData.js +152 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/propertySets.js +18 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/punctuationSets.js +9 -0
- package/templates/facebook/node_modules/stylelint/lib/reference/shorthandData.js +143 -0
- package/templates/facebook/node_modules/stylelint/lib/reportDisables.js +62 -0
- package/templates/facebook/node_modules/stylelint/lib/reportUnknownRuleNames.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/alpha-value-notation/README.md +110 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/alpha-value-notation/index.js +160 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-allowed-list/README.md +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-allowed-list/index.js +57 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-blacklist/README.md +52 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-blacklist/index.js +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-disallowed-list/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-disallowed-list/index.js +57 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-empty-line-before/README.md +421 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-empty-line-before/index.js +161 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-case/README.md +110 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-case/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-newline-after/README.md +108 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-newline-after/index.js +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-space-after/README.md +117 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-name-space-after/index.js +45 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-no-unknown/index.js +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix/README.md +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-property-required-list/README.md +53 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-property-required-list/index.js +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-property-requirelist/README.md +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-property-requirelist/index.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-semicolon-newline-after/README.md +63 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-semicolon-newline-after/index.js +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-semicolon-space-before/index.js +63 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-whitelist/README.md +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/at-rule-whitelist/index.js +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/atRuleNameSpaceChecker.js +43 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-empty-line-before/README.md +238 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-empty-line-before/index.js +118 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-newline-after/README.md +196 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-newline-after/index.js +137 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-newline-before/README.md +93 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-newline-before/index.js +117 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-space-after/README.md +179 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-space-after/index.js +88 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-space-before/README.md +174 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-closing-brace-space-before/index.js +96 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-no-empty/README.md +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-no-empty/index.js +83 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-newline-after/README.md +125 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-newline-after/index.js +145 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-newline-before/README.md +176 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-newline-before/index.js +107 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-space-after/README.md +174 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-space-after/index.js +88 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-space-before/README.md +218 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/block-opening-brace-space-before/index.js +124 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-function-notation/README.md +116 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-function-notation/index.js +108 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-hex-case/README.md +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-hex-case/index.js +82 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-hex-length/README.md +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-hex-length/index.js +120 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-named/README.md +176 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-named/generateColorFuncs.js +198 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-named/index.js +169 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-no-hex/README.md +60 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-no-hex/index.js +60 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-no-invalid-hex/README.md +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/color-no-invalid-hex/index.js +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-empty-line-before/README.md +195 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js +126 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-no-empty/README.md +51 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-no-empty/index.js +46 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-pattern/README.md +38 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-pattern/index.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-whitespace-inside/README.md +99 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-whitespace-inside/index.js +117 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-word-blacklist/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-word-blacklist/index.js +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-word-disallowed-list/README.md +48 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/comment-word-disallowed-list/index.js +59 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-media-pattern/README.md +36 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-media-pattern/index.js +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-property-empty-line-before/README.md +272 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-property-empty-line-before/index.js +129 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-property-pattern/README.md +36 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/custom-property-pattern/index.js +53 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-bang-space-after/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-bang-space-after/index.js +82 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-bang-space-before/README.md +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-bang-space-before/index.js +83 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-custom-properties/README.md +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-custom-properties/index.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-properties/README.md +143 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-properties/index.js +121 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/README.md +197 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.js +99 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/README.md +69 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-newline-after/README.md +141 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-newline-after/index.js +95 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-newline-before/README.md +120 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-newline-before/index.js +62 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-space-after/README.md +147 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-space-after/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-space-before/README.md +130 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-semicolon-space-before/index.js +91 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-single-line-max-declarations/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-single-line-max-declarations/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/README.md +108 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-block-trailing-semicolon/index.js +123 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-newline-after/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-newline-after/index.js +90 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-space-after/README.md +111 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-space-after/index.js +63 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-space-before/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-colon-space-before/index.js +62 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-empty-line-before/README.md +322 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-empty-line-before/index.js +139 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-no-important/README.md +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-no-important/index.js +41 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-allowed-list/README.md +119 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-allowed-list/index.js +94 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-blacklist/README.md +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-blacklist/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-disallowed-list/README.md +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-disallowed-list/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-whitelist/README.md +87 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-unit-whitelist/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-allowed-list/README.md +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-allowed-list/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-blacklist/README.md +107 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js +68 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-disallowed-list/README.md +105 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-disallowed-list/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-whitelist/README.md +98 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declaration-property-value-whitelist/index.js +68 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declarationBangSpaceChecker.js +43 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/declarationColonSpaceChecker.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/findMediaOperator.js +24 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-name-quotes/README.md +163 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-name-quotes/index.js +147 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-no-duplicate-names/README.md +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-no-duplicate-names/index.js +103 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-no-missing-generic-family-keyword/README.md +89 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index.js +97 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-weight-notation/README.md +94 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/font-weight-notation/index.js +154 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-allowed-list/README.md +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-allowed-list/index.js +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-blacklist/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-blacklist/index.js +71 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-calc-no-invalid/README.md +96 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-calc-no-invalid/index.js +259 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-calc-no-unspaced-operator/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-calc-no-unspaced-operator/index.js +138 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-newline-after/README.md +113 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-newline-after/index.js +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-newline-before/README.md +129 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-newline-before/index.js +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-space-after/README.md +144 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-space-after/index.js +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-space-before/README.md +144 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-comma-space-before/index.js +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-disallowed-list/README.md +52 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-disallowed-list/index.js +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/README.md +77 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index.js +110 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-max-empty-lines/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-max-empty-lines/index.js +101 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-name-case/README.md +181 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-name-case/index.js +111 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-parentheses-newline-inside/README.md +144 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-parentheses-newline-inside/index.js +247 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-parentheses-space-inside/README.md +140 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-parentheses-space-inside/index.js +165 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-no-scheme-relative/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-no-scheme-relative/index.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-quotes/README.md +120 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-quotes/index.js +113 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-allowed-list/README.md +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-allowed-list/index.js +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-blacklist/README.md +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-blacklist/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-disallowed-list/README.md +71 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-disallowed-list/index.js +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-whitelist/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-url-scheme-whitelist/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-whitelist/README.md +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-whitelist/index.js +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-whitespace-after/README.md +80 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/function-whitespace-after/index.js +167 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/functionCommaSpaceChecker.js +109 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/functionCommaSpaceFix.js +34 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/hue-degree-notation/README.md +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/hue-degree-notation/index.js +122 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/indentation/README.md +338 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/indentation/index.js +615 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/index.js +401 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/keyframe-declaration-no-important/README.md +52 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.js +43 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/keyframes-name-pattern/README.md +46 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/keyframes-name-pattern/index.js +51 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/length-zero-no-unit/README.md +69 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/length-zero-no-unit/index.js +163 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/linebreaks/README.md +21 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/linebreaks/index.js +102 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-empty-lines/README.md +116 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-empty-lines/index.js +209 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-line-length/README.md +151 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-line-length/index.js +183 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-nesting-depth/README.md +355 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/max-nesting-depth/index.js +114 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-colon-space-after/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-colon-space-after/index.js +82 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-colon-space-before/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-colon-space-before/index.js +82 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-allowed-list/README.md +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-allowed-list/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-blacklist/README.md +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-blacklist/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-case/README.md +108 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-case/index.js +96 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-disallowed-list/README.md +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-disallowed-list/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-no-unknown/README.md +94 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-no-unknown/index.js +88 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md +47 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-value-allowed-list/README.md +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-value-allowed-list/index.js +89 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-value-whitelist/README.md +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-value-whitelist/index.js +99 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-whitelist/README.md +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-name-whitelist/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-parentheses-space-inside/README.md +62 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-parentheses-space-inside/index.js +106 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-range-operator-space-after/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-range-operator-space-after/index.js +92 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-range-operator-space-before/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-feature-range-operator-space-before/index.js +92 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-newline-after/README.md +113 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-newline-after/index.js +88 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-newline-before/README.md +111 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-newline-before/index.js +42 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-space-after/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-space-after/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-space-before/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/media-query-list-comma-space-before/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/mediaFeatureColonSpaceChecker.js +39 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/mediaQueryListCommaWhitespaceChecker.js +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/index.js +80 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/utils/findNotContiguousOrRectangular.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/utils/isRectangular.js +12 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-descending-specificity/README.md +166 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-descending-specificity/index.js +146 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-duplicate-at-import-rules/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-duplicate-at-import-rules/index.js +68 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-duplicate-selectors/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-duplicate-selectors/index.js +149 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-empty-first-line/README.md +34 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-empty-first-line/index.js +49 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-empty-source/README.md +45 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-empty-source/index.js +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-eol-whitespace/README.md +79 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-eol-whitespace/index.js +260 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-extra-semicolons/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-extra-semicolons/index.js +243 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-invalid-double-slash-comments/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-invalid-double-slash-comments/index.js +51 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-invalid-position-at-import-rule/README.md +51 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-invalid-position-at-import-rule/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-irregular-whitespace/README.md +57 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-irregular-whitespace/index.js +134 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-missing-end-of-source-newline/README.md +34 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-missing-end-of-source-newline/index.js +52 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-unknown-animations/README.md +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/no-unknown-animations/index.js +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-leading-zero/README.md +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-leading-zero/index.js +163 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-max-precision/README.md +107 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-max-precision/index.js +101 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-no-trailing-zeros/README.md +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/number-no-trailing-zeros/index.js +119 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-allowed-list/README.md +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-allowed-list/index.js +60 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-blacklist/README.md +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-blacklist/index.js +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-case/README.md +168 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-case/index.js +63 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-disallowed-list/README.md +64 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-disallowed-list/index.js +60 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-no-unknown/README.md +187 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-no-unknown/index.js +107 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-no-vendor-prefix/README.md +70 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-no-vendor-prefix/index.js +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-whitelist/README.md +77 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/property-whitelist/index.js +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/rangeContextNodeParser.js +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/rule-empty-line-before/README.md +326 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/rule-empty-line-before/index.js +145 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-brackets-space-inside/README.md +112 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-brackets-space-inside/index.js +182 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-name-disallowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-name-disallowed-list/index.js +66 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-allowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-allowed-list/index.js +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-blacklist/README.md +46 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-blacklist/index.js +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-disallowed-list/README.md +44 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-disallowed-list/index.js +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-space-after/README.md +162 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-space-after/index.js +89 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-space-before/README.md +162 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-space-before/index.js +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-whitelist/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-operator-whitelist/index.js +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-quotes/README.md +102 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-attribute-quotes/index.js +94 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-class-pattern/README.md +100 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-class-pattern/index.js +121 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-allowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-allowed-list/index.js +70 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-blacklist/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-blacklist/index.js +80 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-disallowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-disallowed-list/index.js +70 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-space-after/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-space-after/index.js +57 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-space-before/README.md +78 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-space-before/index.js +57 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-whitelist/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-combinator-whitelist/index.js +80 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space/README.md +40 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-descendant-combinator-no-non-space/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-disallowed-list/README.md +68 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-disallowed-list/index.js +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-id-pattern/README.md +63 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-id-pattern/index.js +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-newline-after/README.md +120 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-newline-after/index.js +117 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-newline-before/README.md +112 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-newline-before/index.js +91 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-space-after/README.md +110 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-space-after/index.js +83 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-space-before/README.md +110 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-list-comma-space-before/index.js +83 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-attribute/README.md +113 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-attribute/index.js +96 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-class/README.md +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-class/index.js +71 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-combinators/README.md +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-combinators/index.js +72 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-compound-selectors/README.md +59 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-compound-selectors/index.js +79 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-empty-lines/README.md +103 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-empty-lines/index.js +65 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-id/README.md +105 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-id/index.js +95 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-pseudo-class/README.md +50 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-pseudo-class/index.js +85 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-specificity/README.md +138 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-specificity/index.js +182 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-type/README.md +179 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-type/index.js +176 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-universal/README.md +76 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-max-universal/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-nested-pattern/README.md +77 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-nested-pattern/index.js +58 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-no-qualifying-type/README.md +105 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-no-qualifying-type/index.js +134 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-no-vendor-prefix/README.md +67 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-no-vendor-prefix/index.js +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-allowed-list/README.md +53 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-allowed-list/index.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-blacklist/README.md +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-blacklist/index.js +85 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-case/README.md +108 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-case/index.js +97 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-disallowed-list/README.md +53 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-disallowed-list/index.js +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-no-unknown/README.md +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-no-unknown/index.js +157 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-parentheses-space-inside/README.md +62 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-parentheses-space-inside/index.js +141 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-whitelist/README.md +55 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-class-whitelist/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-allowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-allowed-list/index.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-case/README.md +128 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-case/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-colon-notation/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-colon-notation/index.js +94 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-disallowed-list/README.md +54 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-disallowed-list/index.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-no-unknown/README.md +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-no-unknown/index.js +92 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-whitelist/README.md +56 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-pseudo-element-whitelist/index.js +84 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-type-case/README.md +91 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-type-case/index.js +107 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-type-no-unknown/README.md +140 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selector-type-no-unknown/index.js +115 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selectorAttributeOperatorSpaceChecker.js +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selectorCombinatorSpaceChecker.js +87 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/selectorListCommaWhitespaceChecker.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/shorthand-property-no-redundant-values/README.md +75 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/shorthand-property-no-redundant-values/index.js +137 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/string-no-newline/README.md +73 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/string-no-newline/index.js +115 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/string-quotes/README.md +130 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/string-quotes/index.js +221 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/time-min-milliseconds/README.md +77 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/time-min-milliseconds/index.js +142 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unicode-bom/README.md +41 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unicode-bom/index.js +59 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-allowed-list/README.md +115 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-allowed-list/index.js +85 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-blacklist/README.md +161 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-blacklist/index.js +132 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-case/README.md +126 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-case/index.js +114 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-disallowed-list/README.md +159 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-disallowed-list/index.js +125 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-no-unknown/README.md +138 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-no-unknown/index.js +158 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-whitelist/README.md +117 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/unit-whitelist/index.js +92 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-keyword-case/README.md +320 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-keyword-case/index.js +236 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-newline-after/README.md +102 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-newline-after/index.js +100 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-newline-before/README.md +100 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-newline-before/index.js +42 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-space-after/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-space-after/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-space-before/README.md +136 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-comma-space-before/index.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-max-empty-lines/README.md +121 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-list-max-empty-lines/index.js +60 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-no-vendor-prefix/README.md +74 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/value-no-vendor-prefix/index.js +90 -0
- package/templates/facebook/node_modules/stylelint/lib/rules/valueListCommaWhitespaceChecker.js +57 -0
- package/templates/facebook/node_modules/stylelint/lib/standalone.js +334 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/index.js +16 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-css-in-js.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-html.js +8 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-less.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-markdown.js +8 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-sass.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-scss.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/syntaxes/syntax-sugarss.js +3 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/FileCache.js +68 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/addEmptyLineAfter.js +30 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/addEmptyLineBefore.js +26 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/atRuleParamIndex.js +16 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/beforeBlockString.js +54 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/blockString.js +25 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/blurComments.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/blurFunctionArguments.js +53 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/blurInterpolation.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/checkAgainstRule.js +52 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/checkInvalidCLIOptions.js +92 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/configurationError.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/containsString.js +56 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/declarationValueIndex.js +26 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/eachDeclarationBlock.js +59 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/filterFilePaths.js +19 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/findAnimationName.js +69 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/findAtRuleContext.js +23 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/findFontFamily.js +128 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/findListStyleType.js +60 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/functionArgumentsSearch.js +41 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getAtRuleParams.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getCacheFile.js +52 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getDeclarationValue.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getFileIgnorer.js +34 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getFormatterOptionsText.js +19 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getModulePath.js +31 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getNextNonSharedLineCommentNode.js +38 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getOsEol.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getPreviousNonSharedLineCommentNode.js +40 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getRuleSelector.js +13 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getSchemeFromUrl.js +39 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/getUnitFromValueNode.js +49 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasBlock.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasEmptyBlock.js +13 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasEmptyLine.js +14 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasInterpolation.js +26 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasLessInterpolation.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasPsvInterpolation.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasScssInterpolation.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hasTplInterpolation.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/hash.js +12 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isAfterComment.js +16 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isAfterSingleLineComment.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isAfterStandardPropertyDeclaration.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isAutoprefixable.js +86 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule.js +19 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isContextFunctionalPseudoClass.js +23 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCounterIncrementCustomIdentValue.js +21 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCounterResetCustomIdentValue.js +21 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCustomElement.js +46 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCustomMediaQuery.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCustomProperty.js +10 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCustomPropertySet.js +18 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isCustomSelector.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isFirstNested.js +67 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isFirstNodeOfRoot.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isKeyframeRule.js +13 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isKeyframeSelector.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isLessVariable.js +14 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isMap.js +44 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isMathFunction.js +13 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isNonNegativeInteger.js +17 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isNumbery.js +13 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isOnlyWhitespace.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isRangeContextMediaFeature.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isScssVariable.js +21 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isSharedLineComment.js +53 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isSingleLineString.js +12 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxAtRule.js +29 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.js +34 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxDeclaration.js +61 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.js +16 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxMathFunction.js +21 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxMediaFeature.js +26 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxMediaFeatureName.js +16 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxProperty.js +34 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxRule.js +69 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxSelector.js +38 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxTypeSelector.js +53 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxUrl.js +48 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isStandardSyntaxValue.js +47 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isValidFontSize.js +38 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isValidHex.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isVariable.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/isWhitespace.js +11 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/matchesStringOrRegExp.js +85 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/nextNonCommentNode.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/noFilesFoundError.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/nodeContextLookup.js +43 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/optionsMatches.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/parseCalcExpression/index.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/parseCalcExpression/parser.jison +172 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/parseCalcExpression/parser.js +3929 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/parseSelector.js +18 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/putIfAbsent.js +22 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/rawNodeString.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/removeEmptyLinesAfter.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/removeEmptyLinesBefore.js +15 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/report.js +113 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/ruleMessages.js +35 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/setAtRuleParams.js +20 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/setDeclarationValue.js +23 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/transformSelector.js +17 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/typeGuards.js +44 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.js +41 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/validateOptions.js +169 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/vendor.js +45 -0
- package/templates/facebook/node_modules/stylelint/lib/utils/whitespaceChecker.js +370 -0
- package/templates/facebook/node_modules/stylelint/lib/validateDisableSettings.js +79 -0
- package/templates/facebook/node_modules/stylelint/lib/writeOutputFile.js +13 -0
- package/templates/facebook/node_modules/stylelint/package.json +197 -0
- package/templates/facebook/node_modules/type-fest/index.d.ts +35 -0
- package/templates/facebook/node_modules/type-fest/license +9 -0
- package/templates/facebook/node_modules/type-fest/package.json +45 -0
- package/templates/facebook/node_modules/type-fest/readme.md +648 -0
- package/templates/facebook/node_modules/type-fest/source/async-return-type.d.ts +23 -0
- package/templates/facebook/node_modules/type-fest/source/asyncify.d.ts +31 -0
- package/templates/facebook/node_modules/type-fest/source/basic.d.ts +67 -0
- package/templates/facebook/node_modules/type-fest/source/conditional-except.d.ts +43 -0
- package/templates/facebook/node_modules/type-fest/source/conditional-keys.d.ts +43 -0
- package/templates/facebook/node_modules/type-fest/source/conditional-pick.d.ts +42 -0
- package/templates/facebook/node_modules/type-fest/source/entries.d.ts +57 -0
- package/templates/facebook/node_modules/type-fest/source/entry.d.ts +60 -0
- package/templates/facebook/node_modules/type-fest/source/except.d.ts +22 -0
- package/templates/facebook/node_modules/type-fest/source/fixed-length-array.d.ts +38 -0
- package/templates/facebook/node_modules/type-fest/source/iterable-element.d.ts +46 -0
- package/templates/facebook/node_modules/type-fest/source/literal-union.d.ts +33 -0
- package/templates/facebook/node_modules/type-fest/source/merge-exclusive.d.ts +39 -0
- package/templates/facebook/node_modules/type-fest/source/merge.d.ts +22 -0
- package/templates/facebook/node_modules/type-fest/source/mutable.d.ts +22 -0
- package/templates/facebook/node_modules/type-fest/source/opaque.d.ts +65 -0
- package/templates/facebook/node_modules/type-fest/source/package-json.d.ts +627 -0
- package/templates/facebook/node_modules/type-fest/source/partial-deep.d.ts +72 -0
- package/templates/facebook/node_modules/type-fest/source/promisable.d.ts +23 -0
- package/templates/facebook/node_modules/type-fest/source/promise-value.d.ts +27 -0
- package/templates/facebook/node_modules/type-fest/source/readonly-deep.d.ts +59 -0
- package/templates/facebook/node_modules/type-fest/source/require-at-least-one.d.ts +32 -0
- package/templates/facebook/node_modules/type-fest/source/require-exactly-one.d.ts +35 -0
- package/templates/facebook/node_modules/type-fest/source/set-optional.d.ts +34 -0
- package/templates/facebook/node_modules/type-fest/source/set-required.d.ts +34 -0
- package/templates/facebook/node_modules/type-fest/source/set-return-type.d.ts +29 -0
- package/templates/facebook/node_modules/type-fest/source/stringified.d.ts +21 -0
- package/templates/facebook/node_modules/type-fest/source/tsconfig-json.d.ts +872 -0
- package/templates/facebook/node_modules/type-fest/source/union-to-intersection.d.ts +58 -0
- package/templates/facebook/node_modules/type-fest/source/value-of.d.ts +40 -0
- package/templates/facebook/package.json +3 -3
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
module.exports = parse
|
|
4
|
+
|
|
5
|
+
var fromMarkdown = require('mdast-util-from-markdown')
|
|
6
|
+
|
|
7
|
+
function parse(options) {
|
|
8
|
+
var self = this
|
|
9
|
+
|
|
10
|
+
this.Parser = parse
|
|
11
|
+
|
|
12
|
+
function parse(doc) {
|
|
13
|
+
return fromMarkdown(
|
|
14
|
+
doc,
|
|
15
|
+
Object.assign({}, self.data('settings'), options, {
|
|
16
|
+
// Note: these options are not in the readme.
|
|
17
|
+
// The goal is for them to be set by plugins on `data` instead of being
|
|
18
|
+
// passed by users.
|
|
19
|
+
extensions: self.data('micromarkExtensions') || [],
|
|
20
|
+
mdastExtensions: self.data('fromMarkdownExtensions') || []
|
|
21
|
+
})
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "remark-parse",
|
|
3
|
+
"version": "9.0.0",
|
|
4
|
+
"description": "remark plugin to parse Markdown",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"unified",
|
|
8
|
+
"remark",
|
|
9
|
+
"remark-plugin",
|
|
10
|
+
"plugin",
|
|
11
|
+
"markdown",
|
|
12
|
+
"mdast",
|
|
13
|
+
"abstract",
|
|
14
|
+
"syntax",
|
|
15
|
+
"tree",
|
|
16
|
+
"ast",
|
|
17
|
+
"parse"
|
|
18
|
+
],
|
|
19
|
+
"types": "types/index.d.ts",
|
|
20
|
+
"homepage": "https://remark.js.org",
|
|
21
|
+
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-parse",
|
|
22
|
+
"bugs": "https://github.com/remarkjs/remark/issues",
|
|
23
|
+
"funding": {
|
|
24
|
+
"type": "opencollective",
|
|
25
|
+
"url": "https://opencollective.com/unified"
|
|
26
|
+
},
|
|
27
|
+
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
28
|
+
"contributors": [
|
|
29
|
+
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
30
|
+
"Eugene Sharygin <eush77@gmail.com>",
|
|
31
|
+
"Junyoung Choi <fluke8259@gmail.com>",
|
|
32
|
+
"Elijah Hamovitz <elijahhamovitz@gmail.com>",
|
|
33
|
+
"Ika <ikatyang@gmail.com>"
|
|
34
|
+
],
|
|
35
|
+
"files": [
|
|
36
|
+
"index.js",
|
|
37
|
+
"types/index.d.ts"
|
|
38
|
+
],
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"mdast-util-from-markdown": "^0.8.0"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"test": "tape test.js"
|
|
44
|
+
},
|
|
45
|
+
"xo": false
|
|
46
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
# remark-parse
|
|
2
|
+
|
|
3
|
+
[![Build][build-badge]][build]
|
|
4
|
+
[![Coverage][coverage-badge]][coverage]
|
|
5
|
+
[![Downloads][downloads-badge]][downloads]
|
|
6
|
+
[![Size][size-badge]][size]
|
|
7
|
+
[![Sponsors][sponsors-badge]][collective]
|
|
8
|
+
[![Backers][backers-badge]][collective]
|
|
9
|
+
[![Chat][chat-badge]][chat]
|
|
10
|
+
|
|
11
|
+
[Parser][] for [**unified**][unified].
|
|
12
|
+
Parses Markdown to [**mdast**][mdast] syntax trees.
|
|
13
|
+
Built on [`micromark`][micromark] and
|
|
14
|
+
[`mdast-util-from-markdown`][from-markdown].
|
|
15
|
+
Used in the [**remark** processor][remark] but can be used on its own as well.
|
|
16
|
+
Can be [extended][extend] to change how Markdown is parsed.
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
[npm][]:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
npm install remark-parse
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Use
|
|
27
|
+
|
|
28
|
+
```js
|
|
29
|
+
var unified = require('unified')
|
|
30
|
+
var createStream = require('unified-stream')
|
|
31
|
+
var markdown = require('remark-parse')
|
|
32
|
+
var remark2rehype = require('remark-rehype')
|
|
33
|
+
var html = require('rehype-stringify')
|
|
34
|
+
|
|
35
|
+
var processor = unified().use(markdown).use(remark2rehype).use(html)
|
|
36
|
+
|
|
37
|
+
process.stdin.pipe(createStream(processor)).pipe(process.stdout)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
[See **unified** for more examples »][unified]
|
|
41
|
+
|
|
42
|
+
## API
|
|
43
|
+
|
|
44
|
+
[See **unified** for API docs »][unified]
|
|
45
|
+
|
|
46
|
+
### `processor().use(parse)`
|
|
47
|
+
|
|
48
|
+
Configure the `processor` to read Markdown as input and process
|
|
49
|
+
[**mdast**][mdast] syntax trees.
|
|
50
|
+
|
|
51
|
+
## Extending the parser
|
|
52
|
+
|
|
53
|
+
See [`micromark`][micromark] and [`mdast-util-from-markdown`][from-markdown].
|
|
54
|
+
Then create a wrapper plugin such as [`remark-gfm`][gfm].
|
|
55
|
+
|
|
56
|
+
## Security
|
|
57
|
+
|
|
58
|
+
As Markdown is sometimes used for HTML, and improper use of HTML can open you up
|
|
59
|
+
to a [cross-site scripting (XSS)][xss] attack, use of remark can also be unsafe.
|
|
60
|
+
When going to HTML, use remark in combination with the [**rehype**][rehype]
|
|
61
|
+
ecosystem, and use [`rehype-sanitize`][sanitize] to make the tree safe.
|
|
62
|
+
|
|
63
|
+
Use of remark plugins could also open you up to other attacks.
|
|
64
|
+
Carefully assess each plugin and the risks involved in using them.
|
|
65
|
+
|
|
66
|
+
## Contribute
|
|
67
|
+
|
|
68
|
+
See [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways
|
|
69
|
+
to get started.
|
|
70
|
+
See [`support.md`][support] for ways to get help.
|
|
71
|
+
Ideas for new plugins and tools can be posted in [`remarkjs/ideas`][ideas].
|
|
72
|
+
|
|
73
|
+
A curated list of awesome remark resources can be found in [**awesome
|
|
74
|
+
remark**][awesome].
|
|
75
|
+
|
|
76
|
+
This project has a [code of conduct][coc].
|
|
77
|
+
By interacting with this repository, organization, or community you agree to
|
|
78
|
+
abide by its terms.
|
|
79
|
+
|
|
80
|
+
## Sponsor
|
|
81
|
+
|
|
82
|
+
Support this effort and give back by sponsoring on [OpenCollective][collective]!
|
|
83
|
+
|
|
84
|
+
<!--lint ignore no-html-->
|
|
85
|
+
|
|
86
|
+
<table>
|
|
87
|
+
<tr valign="middle">
|
|
88
|
+
<td width="20%" align="center" colspan="2">
|
|
89
|
+
<a href="https://www.gatsbyjs.org">Gatsby</a> 🥇<br><br>
|
|
90
|
+
<a href="https://www.gatsbyjs.org"><img src="https://avatars1.githubusercontent.com/u/12551863?s=256&v=4" width="128"></a>
|
|
91
|
+
</td>
|
|
92
|
+
<td width="20%" align="center" colspan="2">
|
|
93
|
+
<a href="https://vercel.com">Vercel</a> 🥇<br><br>
|
|
94
|
+
<a href="https://vercel.com"><img src="https://avatars1.githubusercontent.com/u/14985020?s=256&v=4" width="128"></a>
|
|
95
|
+
</td>
|
|
96
|
+
<td width="20%" align="center" colspan="2">
|
|
97
|
+
<a href="https://www.netlify.com">Netlify</a><br><br>
|
|
98
|
+
<!--OC has a sharper image-->
|
|
99
|
+
<a href="https://www.netlify.com"><img src="https://images.opencollective.com/netlify/4087de2/logo/256.png" width="128"></a>
|
|
100
|
+
</td>
|
|
101
|
+
<td width="10%" align="center">
|
|
102
|
+
<a href="https://www.holloway.com">Holloway</a><br><br>
|
|
103
|
+
<a href="https://www.holloway.com"><img src="https://avatars1.githubusercontent.com/u/35904294?s=128&v=4" width="64"></a>
|
|
104
|
+
</td>
|
|
105
|
+
<td width="10%" align="center">
|
|
106
|
+
<a href="https://themeisle.com">ThemeIsle</a><br><br>
|
|
107
|
+
<a href="https://themeisle.com"><img src="https://avatars1.githubusercontent.com/u/58979018?s=128&v=4" width="64"></a>
|
|
108
|
+
</td>
|
|
109
|
+
<td width="10%" align="center">
|
|
110
|
+
<a href="https://boosthub.io">Boost Hub</a><br><br>
|
|
111
|
+
<a href="https://boosthub.io"><img src="https://images.opencollective.com/boosthub/6318083/logo/128.png" width="64"></a>
|
|
112
|
+
</td>
|
|
113
|
+
<td width="10%" align="center">
|
|
114
|
+
<a href="https://expo.io">Expo</a><br><br>
|
|
115
|
+
<a href="https://expo.io"><img src="https://avatars1.githubusercontent.com/u/12504344?s=128&v=4" width="64"></a>
|
|
116
|
+
</td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr valign="middle">
|
|
119
|
+
<td width="100%" align="center" colspan="10">
|
|
120
|
+
<br>
|
|
121
|
+
<a href="https://opencollective.com/unified"><strong>You?</strong></a>
|
|
122
|
+
<br><br>
|
|
123
|
+
</td>
|
|
124
|
+
</tr>
|
|
125
|
+
</table>
|
|
126
|
+
|
|
127
|
+
## License
|
|
128
|
+
|
|
129
|
+
[MIT][license] © [Titus Wormer][author]
|
|
130
|
+
|
|
131
|
+
<!-- Definitions -->
|
|
132
|
+
|
|
133
|
+
[build-badge]: https://img.shields.io/travis/remarkjs/remark.svg
|
|
134
|
+
|
|
135
|
+
[build]: https://travis-ci.org/remarkjs/remark
|
|
136
|
+
|
|
137
|
+
[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg
|
|
138
|
+
|
|
139
|
+
[coverage]: https://codecov.io/github/remarkjs/remark
|
|
140
|
+
|
|
141
|
+
[downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg
|
|
142
|
+
|
|
143
|
+
[downloads]: https://www.npmjs.com/package/remark-parse
|
|
144
|
+
|
|
145
|
+
[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-parse.svg
|
|
146
|
+
|
|
147
|
+
[size]: https://bundlephobia.com/result?p=remark-parse
|
|
148
|
+
|
|
149
|
+
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
|
|
150
|
+
|
|
151
|
+
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
|
|
152
|
+
|
|
153
|
+
[collective]: https://opencollective.com/unified
|
|
154
|
+
|
|
155
|
+
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
|
|
156
|
+
|
|
157
|
+
[chat]: https://github.com/remarkjs/remark/discussions
|
|
158
|
+
|
|
159
|
+
[health]: https://github.com/remarkjs/.github
|
|
160
|
+
|
|
161
|
+
[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md
|
|
162
|
+
|
|
163
|
+
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md
|
|
164
|
+
|
|
165
|
+
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md
|
|
166
|
+
|
|
167
|
+
[ideas]: https://github.com/remarkjs/ideas
|
|
168
|
+
|
|
169
|
+
[awesome]: https://github.com/remarkjs/awesome-remark
|
|
170
|
+
|
|
171
|
+
[license]: https://github.com/remarkjs/remark/blob/main/license
|
|
172
|
+
|
|
173
|
+
[author]: https://wooorm.com
|
|
174
|
+
|
|
175
|
+
[npm]: https://docs.npmjs.com/cli/install
|
|
176
|
+
|
|
177
|
+
[unified]: https://github.com/unifiedjs/unified
|
|
178
|
+
|
|
179
|
+
[remark]: https://github.com/remarkjs/remark/tree/main/packages/remark
|
|
180
|
+
|
|
181
|
+
[mdast]: https://github.com/syntax-tree/mdast
|
|
182
|
+
|
|
183
|
+
[parser]: https://github.com/unifiedjs/unified#processorparser
|
|
184
|
+
|
|
185
|
+
[extend]: #extending-the-parser
|
|
186
|
+
|
|
187
|
+
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
|
|
188
|
+
|
|
189
|
+
[rehype]: https://github.com/rehypejs/rehype
|
|
190
|
+
|
|
191
|
+
[sanitize]: https://github.com/rehypejs/rehype-sanitize
|
|
192
|
+
|
|
193
|
+
[micromark]: https://github.com/micromark/micromark
|
|
194
|
+
|
|
195
|
+
[from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown
|
|
196
|
+
|
|
197
|
+
[gfm]: https://github.com/remarkjs/remark-gfm
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// TypeScript Version: 3.0
|
|
2
|
+
|
|
3
|
+
import {Plugin} from 'unified'
|
|
4
|
+
import {Options} from 'mdast-util-from-markdown'
|
|
5
|
+
|
|
6
|
+
declare namespace remarkParse {
|
|
7
|
+
interface Parse extends Plugin<[RemarkParseOptions?]> {}
|
|
8
|
+
|
|
9
|
+
type RemarkParseOptions = Options
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare const remarkParse: remarkParse.Parse
|
|
13
|
+
|
|
14
|
+
export = remarkParse
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
module.exports = stringify
|
|
4
|
+
|
|
5
|
+
var toMarkdown = require('mdast-util-to-markdown')
|
|
6
|
+
|
|
7
|
+
function stringify(options) {
|
|
8
|
+
var self = this
|
|
9
|
+
|
|
10
|
+
this.Compiler = compile
|
|
11
|
+
|
|
12
|
+
function compile(tree) {
|
|
13
|
+
return toMarkdown(
|
|
14
|
+
tree,
|
|
15
|
+
Object.assign({}, self.data('settings'), options, {
|
|
16
|
+
// Note: this option is not in the readme.
|
|
17
|
+
// The goal is for it to be set by plugins on `data` instead of being
|
|
18
|
+
// passed by users.
|
|
19
|
+
extensions: self.data('toMarkdownExtensions') || []
|
|
20
|
+
})
|
|
21
|
+
)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
(The MIT License)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-2020 Titus Wormer <tituswormer@gmail.com>
|
|
4
|
+
Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/)
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "remark-stringify",
|
|
3
|
+
"version": "9.0.1",
|
|
4
|
+
"description": "remark plugin to compile Markdown",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"unified",
|
|
8
|
+
"remark",
|
|
9
|
+
"remark-plugin",
|
|
10
|
+
"plugin",
|
|
11
|
+
"markdown",
|
|
12
|
+
"mdast",
|
|
13
|
+
"markdown",
|
|
14
|
+
"abstract",
|
|
15
|
+
"syntax",
|
|
16
|
+
"tree",
|
|
17
|
+
"ast",
|
|
18
|
+
"stringify",
|
|
19
|
+
"serialize",
|
|
20
|
+
"compile"
|
|
21
|
+
],
|
|
22
|
+
"homepage": "https://remark.js.org",
|
|
23
|
+
"repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-stringify",
|
|
24
|
+
"bugs": "https://github.com/remarkjs/remark/issues",
|
|
25
|
+
"funding": {
|
|
26
|
+
"type": "opencollective",
|
|
27
|
+
"url": "https://opencollective.com/unified"
|
|
28
|
+
},
|
|
29
|
+
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
30
|
+
"contributors": [
|
|
31
|
+
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
32
|
+
"Eugene Sharygin <eush77@gmail.com>"
|
|
33
|
+
],
|
|
34
|
+
"files": [
|
|
35
|
+
"index.js",
|
|
36
|
+
"types/index.d.ts"
|
|
37
|
+
],
|
|
38
|
+
"types": "types/index.d.ts",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"mdast-util-to-markdown": "^0.6.0"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"test": "tape test.js"
|
|
44
|
+
},
|
|
45
|
+
"xo": false
|
|
46
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
# remark-stringify
|
|
2
|
+
|
|
3
|
+
[![Build][build-badge]][build]
|
|
4
|
+
[![Coverage][coverage-badge]][coverage]
|
|
5
|
+
[![Downloads][downloads-badge]][downloads]
|
|
6
|
+
[![Size][size-badge]][size]
|
|
7
|
+
[![Chat][chat-badge]][chat]
|
|
8
|
+
[![Sponsors][sponsors-badge]][collective]
|
|
9
|
+
[![Backers][backers-badge]][collective]
|
|
10
|
+
|
|
11
|
+
[Compiler][] for [**unified**][unified].
|
|
12
|
+
Serializes [**mdast**][mdast] syntax trees to Markdown.
|
|
13
|
+
Used in the [**remark** processor][remark] but can be used on its own as well.
|
|
14
|
+
Can be [extended][extend] to change how Markdown is serialized.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
[npm][]:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
npm install remark-stringify
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Use
|
|
25
|
+
|
|
26
|
+
```js
|
|
27
|
+
var unified = require('unified')
|
|
28
|
+
var createStream = require('unified-stream')
|
|
29
|
+
var html = require('rehype-parse')
|
|
30
|
+
var rehype2remark = require('rehype-remark')
|
|
31
|
+
var stringify = require('remark-stringify')
|
|
32
|
+
|
|
33
|
+
var processor = unified().use(html).use(rehype2remark).use(stringify, {
|
|
34
|
+
bullet: '*',
|
|
35
|
+
fence: '~',
|
|
36
|
+
fences: true,
|
|
37
|
+
incrementListMarker: false
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
process.stdin.pipe(createStream(processor)).pipe(process.stdout)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
[See **unified** for more examples »][unified]
|
|
44
|
+
|
|
45
|
+
## API
|
|
46
|
+
|
|
47
|
+
[See **unified** for API docs »][unified]
|
|
48
|
+
|
|
49
|
+
### `processor().use(stringify[, options])`
|
|
50
|
+
|
|
51
|
+
Configure the `processor` to serialize [**mdast**][mdast] syntax trees to
|
|
52
|
+
Markdown.
|
|
53
|
+
|
|
54
|
+
###### `options`
|
|
55
|
+
|
|
56
|
+
Options can be passed directly, or passed later through
|
|
57
|
+
[`processor.data()`][data].
|
|
58
|
+
|
|
59
|
+
All the formatting options of [`mdast-util-to-markdown`][to-markdown-options]
|
|
60
|
+
are supported and will be passed through.
|
|
61
|
+
|
|
62
|
+
## Extending the compiler
|
|
63
|
+
|
|
64
|
+
See [`mdast-util-to-markdown`][to-markdown].
|
|
65
|
+
Then create a wrapper plugin such as [`remark-gfm`][remark-gfm].
|
|
66
|
+
|
|
67
|
+
## Security
|
|
68
|
+
|
|
69
|
+
`remark-stringify` will do its best to serialize markdown to match the syntax
|
|
70
|
+
tree, but there are several cases where that is impossible.
|
|
71
|
+
It’ll do its best, but complete roundtripping is impossible given that any
|
|
72
|
+
value could be injected into the tree.
|
|
73
|
+
|
|
74
|
+
As Markdown is sometimes used for HTML, and improper use of HTML can open you up
|
|
75
|
+
to a [cross-site scripting (XSS)][xss] attack, use of `remark-stringify` and
|
|
76
|
+
parsing it again later can potentially be unsafe.
|
|
77
|
+
When parsing Markdown afterwards, use remark in combination with the
|
|
78
|
+
[**rehype**][rehype] ecosystem, and use [`rehype-sanitize`][sanitize] to make
|
|
79
|
+
the tree safe.
|
|
80
|
+
|
|
81
|
+
Use of remark plugins could also open you up to other attacks.
|
|
82
|
+
Carefully assess each plugin and the risks involved in using them.
|
|
83
|
+
|
|
84
|
+
## Contribute
|
|
85
|
+
|
|
86
|
+
See [`contributing.md`][contributing] in [`remarkjs/.github`][health] for ways
|
|
87
|
+
to get started.
|
|
88
|
+
See [`support.md`][support] for ways to get help.
|
|
89
|
+
Ideas for new plugins and tools can be posted in [`remarkjs/ideas`][ideas].
|
|
90
|
+
|
|
91
|
+
A curated list of awesome remark resources can be found in [**awesome
|
|
92
|
+
remark**][awesome].
|
|
93
|
+
|
|
94
|
+
This project has a [code of conduct][coc].
|
|
95
|
+
By interacting with this repository, organization, or community you agree to
|
|
96
|
+
abide by its terms.
|
|
97
|
+
|
|
98
|
+
## Sponsor
|
|
99
|
+
|
|
100
|
+
Support this effort and give back by sponsoring on [OpenCollective][collective]!
|
|
101
|
+
|
|
102
|
+
<!--lint ignore no-html-->
|
|
103
|
+
|
|
104
|
+
<table>
|
|
105
|
+
<tr valign="middle">
|
|
106
|
+
<td width="20%" align="center" colspan="2">
|
|
107
|
+
<a href="https://www.gatsbyjs.org">Gatsby</a> 🥇<br><br>
|
|
108
|
+
<a href="https://www.gatsbyjs.org"><img src="https://avatars1.githubusercontent.com/u/12551863?s=256&v=4" width="128"></a>
|
|
109
|
+
</td>
|
|
110
|
+
<td width="20%" align="center" colspan="2">
|
|
111
|
+
<a href="https://vercel.com">Vercel</a> 🥇<br><br>
|
|
112
|
+
<a href="https://vercel.com"><img src="https://avatars1.githubusercontent.com/u/14985020?s=256&v=4" width="128"></a>
|
|
113
|
+
</td>
|
|
114
|
+
<td width="20%" align="center" colspan="2">
|
|
115
|
+
<a href="https://www.netlify.com">Netlify</a><br><br>
|
|
116
|
+
<!--OC has a sharper image-->
|
|
117
|
+
<a href="https://www.netlify.com"><img src="https://images.opencollective.com/netlify/4087de2/logo/256.png" width="128"></a>
|
|
118
|
+
</td>
|
|
119
|
+
<td width="10%" align="center">
|
|
120
|
+
<a href="https://www.holloway.com">Holloway</a><br><br>
|
|
121
|
+
<a href="https://www.holloway.com"><img src="https://avatars1.githubusercontent.com/u/35904294?s=128&v=4" width="64"></a>
|
|
122
|
+
</td>
|
|
123
|
+
<td width="10%" align="center">
|
|
124
|
+
<a href="https://themeisle.com">ThemeIsle</a><br><br>
|
|
125
|
+
<a href="https://themeisle.com"><img src="https://avatars1.githubusercontent.com/u/58979018?s=128&v=4" width="64"></a>
|
|
126
|
+
</td>
|
|
127
|
+
<td width="10%" align="center">
|
|
128
|
+
<a href="https://boosthub.io">Boost Hub</a><br><br>
|
|
129
|
+
<a href="https://boosthub.io"><img src="https://images.opencollective.com/boosthub/6318083/logo/128.png" width="64"></a>
|
|
130
|
+
</td>
|
|
131
|
+
<td width="10%" align="center">
|
|
132
|
+
<a href="https://expo.io">Expo</a><br><br>
|
|
133
|
+
<a href="https://expo.io"><img src="https://avatars1.githubusercontent.com/u/12504344?s=128&v=4" width="64"></a>
|
|
134
|
+
</td>
|
|
135
|
+
</tr>
|
|
136
|
+
<tr valign="middle">
|
|
137
|
+
<td width="100%" align="center" colspan="10">
|
|
138
|
+
<br>
|
|
139
|
+
<a href="https://opencollective.com/unified"><strong>You?</strong></a>
|
|
140
|
+
<br><br>
|
|
141
|
+
</td>
|
|
142
|
+
</tr>
|
|
143
|
+
</table>
|
|
144
|
+
|
|
145
|
+
## License
|
|
146
|
+
|
|
147
|
+
[MIT][license] © [Titus Wormer][author]
|
|
148
|
+
|
|
149
|
+
<!-- Definitions -->
|
|
150
|
+
|
|
151
|
+
[build-badge]: https://github.com/remarkjs/remark/workflows/main/badge.svg
|
|
152
|
+
|
|
153
|
+
[build]: https://github.com/remarkjs/remark/actions
|
|
154
|
+
|
|
155
|
+
[coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg
|
|
156
|
+
|
|
157
|
+
[coverage]: https://codecov.io/github/remarkjs/remark
|
|
158
|
+
|
|
159
|
+
[downloads-badge]: https://img.shields.io/npm/dm/remark-stringify.svg
|
|
160
|
+
|
|
161
|
+
[downloads]: https://www.npmjs.com/package/remark-stringify
|
|
162
|
+
|
|
163
|
+
[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-stringify.svg
|
|
164
|
+
|
|
165
|
+
[size]: https://bundlephobia.com/result?p=remark-stringify
|
|
166
|
+
|
|
167
|
+
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
|
|
168
|
+
|
|
169
|
+
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
|
|
170
|
+
|
|
171
|
+
[collective]: https://opencollective.com/unified
|
|
172
|
+
|
|
173
|
+
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
|
|
174
|
+
|
|
175
|
+
[chat]: https://github.com/remarkjs/remark/discussions
|
|
176
|
+
|
|
177
|
+
[health]: https://github.com/remarkjs/.github
|
|
178
|
+
|
|
179
|
+
[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md
|
|
180
|
+
|
|
181
|
+
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md
|
|
182
|
+
|
|
183
|
+
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md
|
|
184
|
+
|
|
185
|
+
[ideas]: https://github.com/remarkjs/ideas
|
|
186
|
+
|
|
187
|
+
[awesome]: https://github.com/remarkjs/awesome-remark
|
|
188
|
+
|
|
189
|
+
[license]: https://github.com/remarkjs/remark/blob/main/license
|
|
190
|
+
|
|
191
|
+
[author]: https://wooorm.com
|
|
192
|
+
|
|
193
|
+
[npm]: https://docs.npmjs.com/cli/install
|
|
194
|
+
|
|
195
|
+
[unified]: https://github.com/unifiedjs/unified
|
|
196
|
+
|
|
197
|
+
[data]: https://github.com/unifiedjs/unified#processordatakey-value
|
|
198
|
+
|
|
199
|
+
[remark]: https://github.com/remarkjs/remark/tree/main/packages/remark
|
|
200
|
+
|
|
201
|
+
[compiler]: https://github.com/unifiedjs/unified#processorcompiler
|
|
202
|
+
|
|
203
|
+
[mdast]: https://github.com/syntax-tree/mdast
|
|
204
|
+
|
|
205
|
+
[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting
|
|
206
|
+
|
|
207
|
+
[rehype]: https://github.com/rehypejs/rehype
|
|
208
|
+
|
|
209
|
+
[sanitize]: https://github.com/rehypejs/rehype-sanitize
|
|
210
|
+
|
|
211
|
+
[to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown
|
|
212
|
+
|
|
213
|
+
[to-markdown-options]: https://github.com/syntax-tree/mdast-util-to-markdown#formatting-options
|
|
214
|
+
|
|
215
|
+
[extend]: #extending-the-compiler
|
|
216
|
+
|
|
217
|
+
[remark-gfm]: https://github.com/remarkjs/remark-gfm
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// TypeScript Version: 3.0
|
|
2
|
+
|
|
3
|
+
import {Plugin} from 'unified'
|
|
4
|
+
import {Options} from 'mdast-util-to-markdown'
|
|
5
|
+
|
|
6
|
+
declare namespace remarkStringify {
|
|
7
|
+
interface Stringify extends Plugin<[RemarkStringifyOptions?]> {}
|
|
8
|
+
|
|
9
|
+
type RemarkStringifyOptions = Options
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare const remarkStringify: remarkStringify.Stringify
|
|
13
|
+
|
|
14
|
+
export = remarkStringify
|