summaryrefslogtreecommitdiff
path: root/docs/src/pages/guides/markdown-content.md
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2021-07-15 18:14:46 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-07-15 18:14:46 +0000
commitf51f6c85d124226dbf35205f0550862a47ed3d5f (patch)
tree3dcdaf3019cc20362d41ae7bd791424f6e651288 /docs/src/pages/guides/markdown-content.md
parent166e22bdf35b9751dc42f5cc6cb27a99b077df93 (diff)
downloadastro-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.md5
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' }],
+ ],
},
};
```