diff --git a/packages/integrations/markdoc/README.md b/packages/integrations/markdoc/README.md index d398c8b39..57bced4da 100644 --- a/packages/integrations/markdoc/README.md +++ b/packages/integrations/markdoc/README.md @@ -100,22 +100,22 @@ import markdoc from '@astrojs/markdoc'; // https://astro.build/config export default defineConfig({ integrations: [ - markdoc({ - variables: { + markdoc({ + variables: { version: '0.0.1', - } - tags: { - aside: { - // See "Content `components` prop section - // for more on rendering components via tags - render: 'Aside', - attributes: { - type: { type: String }, - title: { type: String }, - }, - }, - }, - }), + }, + tags: { + aside: { + // See "Content `components` prop section + // for more on rendering components via tags + render: 'Aside', + attributes: { + type: { type: String }, + title: { type: String }, + }, + }, + }, + }), ], }); ```