diff options
author | 2022-06-06 16:49:53 +0000 | |
---|---|---|
committer | 2022-06-06 16:49:53 +0000 | |
commit | f0f6a3332f88327cf165a35a668ca14aeaac0491 (patch) | |
tree | de26dc62371a7a3f954169ade1bdf3bbac607b13 /packages/markdown/remark/src/index.ts | |
parent | 5b06398b7ba513a943996aea23399a2e2cb68fd5 (diff) | |
download | astro-fix/map-file-404-logs.tar.gz astro-fix/map-file-404-logs.tar.zst astro-fix/map-file-404-logs.zip |
[ci] formatfix/map-file-404-logs
Diffstat (limited to 'packages/markdown/remark/src/index.ts')
-rw-r--r-- | packages/markdown/remark/src/index.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/markdown/remark/src/index.ts b/packages/markdown/remark/src/index.ts index 2e9aa54fd..917976d5e 100644 --- a/packages/markdown/remark/src/index.ts +++ b/packages/markdown/remark/src/index.ts @@ -1,24 +1,24 @@ import type { MarkdownRenderingOptions, MarkdownRenderingResult } from './types'; +import { loadPlugins } from './load-plugins.js'; import createCollectHeaders from './rehype-collect-headers.js'; -import scopedStyles from './remark-scoped-styles.js'; +import rehypeEscape from './rehype-escape.js'; import rehypeExpressions from './rehype-expressions.js'; import rehypeIslands from './rehype-islands.js'; -import remarkMdxish from './remark-mdxish.js'; -import remarkMarkAndUnravel from './remark-mark-and-unravel.js'; import rehypeJsx from './rehype-jsx.js'; -import rehypeEscape from './rehype-escape.js'; +import remarkMarkAndUnravel from './remark-mark-and-unravel.js'; +import remarkMdxish from './remark-mdxish.js'; import remarkPrism from './remark-prism.js'; +import scopedStyles from './remark-scoped-styles.js'; import remarkShiki from './remark-shiki.js'; import remarkUnwrap from './remark-unwrap.js'; -import { loadPlugins } from './load-plugins.js'; -import { unified } from 'unified'; +import Slugger from 'github-slugger'; +import rehypeRaw from 'rehype-raw'; +import rehypeStringify from 'rehype-stringify'; import markdown from 'remark-parse'; import markdownToHtml from 'remark-rehype'; -import rehypeStringify from 'rehype-stringify'; -import rehypeRaw from 'rehype-raw'; -import Slugger from 'github-slugger'; +import { unified } from 'unified'; import { VFile } from 'vfile'; export * from './types.js'; |