Skip to content

Commit

Permalink
Fix typo in Markdown plugins sample code (#3136)
Browse files Browse the repository at this point in the history
This fixes issue #3128.
  • Loading branch information
thdoan authored May 2, 2023
1 parent 292a39f commit 00031d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/content/docs/en/guides/markdown-content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ import { rehypeAccessibleEmojis } from 'rehype-accessible-emojis';
export default defineConfig({
markdown: {
// Applied to .md and .mdx files
remarkPlugins: [remarkToc, rehypeAccessibleEmojis],
remarkPlugins: [remarkToc],
rehypePlugins: [rehypeAccessibleEmojis],
},
});
```
Expand Down

0 comments on commit 00031d5

Please sign in to comment.