[ci] yarn format

This commit is contained in:
matthewp 2022-02-04 18:51:12 +00:00 committed by GitHub Actions
parent cfeaa9414a
commit 939886ff47

View file

@ -69,7 +69,7 @@ export default {
You can provide names of the plugins as well as import them: You can provide names of the plugins as well as import them:
```js ```js
import autolinkHeadings from 'remark-autolink-headings' import autolinkHeadings from 'remark-autolink-headings';
// astro.config.mjs // astro.config.mjs
export default { export default {
@ -77,9 +77,7 @@ export default {
render: [ render: [
'@astrojs/markdown-remark', '@astrojs/markdown-remark',
{ {
remarkPlugins: [ remarkPlugins: [[autolinkHeadings, { behavior: 'prepend' }]],
[autolinkHeadings, { behavior: 'prepend' }],
],
}, },
], ],
}, },