From 6cdf8cf2430594c56e2190c15785c53672985dd0 Mon Sep 17 00:00:00 2001
From: bholmesdev <hey@bholmes.dev>
Date: Wed, 1 Mar 2023 16:43:36 -0500
Subject: [PATCH] fix: inconsistent tabs v spaces

---
 packages/integrations/markdoc/README.md | 30 ++++++++++++-------------
 1 file changed, 15 insertions(+), 15 deletions(-)

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 },
+          },
+        },
+      },
+    }),
 	],
 });
 ```