From 32dda6230ef7e2034b958dab00fdbf1ef0554a0d Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Wed, 1 Mar 2023 16:45:29 -0500 Subject: [PATCH] fix: indentation --- packages/integrations/markdoc/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/integrations/markdoc/README.md b/packages/integrations/markdoc/README.md index 57bced4da..7781a1d3f 100644 --- a/packages/integrations/markdoc/README.md +++ b/packages/integrations/markdoc/README.md @@ -99,15 +99,15 @@ import markdoc from '@astrojs/markdoc'; // https://astro.build/config export default defineConfig({ - integrations: [ + integrations: [ markdoc({ variables: { version: '0.0.1', }, tags: { aside: { - // See "Content `components` prop section - // for more on rendering components via tags + // See "Content `components` prop section + // for more on rendering components via tags render: 'Aside', attributes: { type: { type: String }, @@ -116,7 +116,7 @@ export default defineConfig({ }, }, }), - ], + ], }); ```