diff options
author | 2021-07-15 18:14:46 +0000 | |
---|---|---|
committer | 2021-07-15 18:14:46 +0000 | |
commit | f51f6c85d124226dbf35205f0550862a47ed3d5f (patch) | |
tree | 3dcdaf3019cc20362d41ae7bd791424f6e651288 /docs/src/pages/guides/markdown-content.md | |
parent | 166e22bdf35b9751dc42f5cc6cb27a99b077df93 (diff) | |
download | astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.tar.gz astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.tar.zst astro-f51f6c85d124226dbf35205f0550862a47ed3d5f.zip |
[ci] yarn format
Diffstat (limited to 'docs/src/pages/guides/markdown-content.md')
-rw-r--r-- | docs/src/pages/guides/markdown-content.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/src/pages/guides/markdown-content.md b/docs/src/pages/guides/markdown-content.md index 1314e9ea8..5cc81a961 100644 --- a/docs/src/pages/guides/markdown-content.md +++ b/docs/src/pages/guides/markdown-content.md @@ -43,7 +43,10 @@ You can provide names of the plugins as well as import them: // astro.config.js export default { markdownOptions: { - remarkPlugins: [import('remark-slug'), [import('remark-autolink-headings'), { behavior: 'prepend' }]], + remarkPlugins: [ + import('remark-slug'), + [import('remark-autolink-headings'), { behavior: 'prepend' }], + ], }, }; ``` |