diff options
Diffstat (limited to 'packages/markdown/remark/src/rehype-collect-headers.ts')
-rw-r--r-- | packages/markdown/remark/src/rehype-collect-headers.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/markdown/remark/src/rehype-collect-headers.ts b/packages/markdown/remark/src/rehype-collect-headers.ts index 44881864b..9a64d59c8 100644 --- a/packages/markdown/remark/src/rehype-collect-headers.ts +++ b/packages/markdown/remark/src/rehype-collect-headers.ts @@ -1,6 +1,6 @@ -import { visit } from 'unist-util-visit'; -import { toHtml } from 'hast-util-to-html'; import Slugger from 'github-slugger'; +import { toHtml } from 'hast-util-to-html'; +import { visit } from 'unist-util-visit'; import type { MarkdownHeader, RehypePlugin } from './types.js'; |