diff options
Diffstat (limited to 'packages/markdown/remark/src')
-rw-r--r-- | packages/markdown/remark/src/remark-escape.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/markdown/remark/src/remark-escape.ts b/packages/markdown/remark/src/remark-escape.ts index dd8a921ff..84cdf2efa 100644 --- a/packages/markdown/remark/src/remark-escape.ts +++ b/packages/markdown/remark/src/remark-escape.ts @@ -2,7 +2,7 @@ import type { Literal } from 'unist'; import { visit } from 'unist-util-visit'; // In code blocks, this removes the JS comment wrapper added to -// HTML comments by vite-plugin-markdown. +// HTML comments by vite-plugin-markdown-legacy. export default function remarkEscape() { return (tree: any) => { visit(tree, 'code', removeCommentWrapper); |