From fd7ab4e11cfd99871c0eaa6445708ba87aa65305 Mon Sep 17 00:00:00 2001
From: FredKSchott <FredKSchott@users.noreply.github.com>
Date: Mon, 21 Mar 2022 04:03:05 +0000
Subject: [PATCH] [ci] format

---
 packages/astro/CHANGELOG.md | 58 ++++++++++++++++++-------------------
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index b5912b8886..71d35ce543 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -52,7 +52,7 @@
   import { defineConfig } from 'astro/config';
 
   export default defineConfig({
-  	renderers: [],
+    renderers: [],
   });
   ```
 
@@ -90,9 +90,9 @@
 
   ```json
   {
-  	"scripts": {
-  		"build": "astro build --legacy-build"
-  	}
+    "scripts": {
+      "build": "astro build --legacy-build"
+    }
   }
   ```
 
@@ -112,7 +112,7 @@
 
   ```ts
   if (Astro.slots.has('default')) {
-  	const content = await Astro.slots.render('default');
+    const content = await Astro.slots.render('default');
   }
   ```
 
@@ -196,7 +196,7 @@
 
   ```ts
   if (Astro.slots.has('default')) {
-  	const content = await Astro.slots.render('default');
+    const content = await Astro.slots.render('default');
   }
   ```
 
@@ -220,9 +220,9 @@
 
   ```json
   {
-  	"scripts": {
-  		"build": "astro build --legacy-build"
-  	}
+    "scripts": {
+      "build": "astro build --legacy-build"
+    }
   }
   ```
 
@@ -334,12 +334,12 @@
   ```typescript
   // src/pages/company.json.ts
   export async function get() {
-  	return {
-  		body: JSON.stringify({
-  			name: 'Astro Technology Company',
-  			url: 'https://astro.build/',
-  		}),
-  	};
+    return {
+      body: JSON.stringify({
+        name: 'Astro Technology Company',
+        url: 'https://astro.build/',
+      }),
+    };
   }
   ```
 
@@ -501,12 +501,12 @@
   ```typescript
   // src/pages/company.json.ts
   export async function get() {
-  	return {
-  		body: JSON.stringify({
-  			name: 'Astro Technology Company',
-  			url: 'https://astro.build/',
-  		}),
-  	};
+    return {
+      body: JSON.stringify({
+        name: 'Astro Technology Company',
+        url: 'https://astro.build/',
+      }),
+    };
   }
   ```
 
@@ -1861,10 +1861,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
 
   ```js
   export default {
-  	markdownOptions: {
-  		remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
-  		rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
-  	},
+    markdownOptions: {
+      remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
+      rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
+    },
   };
   ```
 
@@ -1884,10 +1884,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
 
   ```js
   export default {
-  	name: '@matthewp/my-renderer',
-  	server: './server.js',
-  	client: './client.js',
-  	hydrationPolyfills: ['./my-polyfill.js'],
+    name: '@matthewp/my-renderer',
+    server: './server.js',
+    client: './client.js',
+    hydrationPolyfills: ['./my-polyfill.js'],
   };
   ```