From d0b8485ddfd8dca1376ea0d417ce37282d092cd9 Mon Sep 17 00:00:00 2001
From: Marcus Otterström <35617441+MarcusOtter@users.noreply.github.com>
Date: Sat, 31 Jul 2021 00:34:07 +0200
Subject: Ascii quotes (#928)
---
docs/src/pages/blog/island-architecture.md | 2 +-
docs/src/pages/core-concepts/astro-components.md | 6 +-
docs/src/pages/core-concepts/collections.md | 4 +-
docs/src/pages/guides/deploy.md | 2 +-
docs/src/pages/guides/styling.md | 96 +++++++++++-----------
docs/src/pages/reference/api-reference.md | 4 +-
.../src/pages/reference/configuration-reference.md | 2 +-
7 files changed, 58 insertions(+), 58 deletions(-)
(limited to 'docs/src')
diff --git a/docs/src/pages/blog/island-architecture.md b/docs/src/pages/blog/island-architecture.md
index 186b0ca9a..c516287ef 100644
--- a/docs/src/pages/blog/island-architecture.md
+++ b/docs/src/pages/blog/island-architecture.md
@@ -30,7 +30,7 @@ In the summer of 2020, he managed to formulated his thoughts of how web architec
His seminal post outlines and discusses the general concept of 'islands' as an architectural design process that could be used in Web Development, allowing for better improvements in overall site performance, SEO, UX, and everywhere else. His given explanation describing this new paradigm, was extraordinarily succinct:
-> "The general idea of an _“Islands”_ architecture is deceptively simple: Render HTML pages on the server, and inject placeholders or slots around highly dynamic regions. These placeholders/slots contain the server-rendered HTML output from their corresponding widget. They denote regions that can then be "hydrated" on the client into small self-contained widgets, reusing their server-rendered initial HTML."-Jason Miller
+> "The general idea of an _"Islands"_ architecture is deceptively simple: Render HTML pages on the server, and inject placeholders or slots around highly dynamic regions. These placeholders/slots contain the server-rendered HTML output from their corresponding widget. They denote regions that can then be "hydrated" on the client into small self-contained widgets, reusing their server-rendered initial HTML."-Jason Miller
To develop a better understanding of what Jason meant with his proposal, let's quickly explore the backdrop, before we explain 'Island Architecture' and how it is applied into Astro as our primary ethos.
diff --git a/docs/src/pages/core-concepts/astro-components.md b/docs/src/pages/core-concepts/astro-components.md
index a72c5121b..758b3fb07 100644
--- a/docs/src/pages/core-concepts/astro-components.md
+++ b/docs/src/pages/core-concepts/astro-components.md
@@ -34,7 +34,7 @@ An Astro component represents some snippet of HTML in your project. This can be
CSS rules inside of a `
-
I’m a scoped style and only apply to this component
+
I'm a scoped style and only apply to this component
I have both scoped and global styles
```
@@ -52,7 +52,7 @@ To include every selector in a `
-
I’m a scoped style and only apply to this component
+
I'm a scoped style and only apply to this component
I have both scoped and global styles
```
@@ -66,7 +66,7 @@ We also automatically add browser prefixes using [Autoprefixer][autoprefixer]. B
## Supported Styling Options
-Styling in Astro is meant to be as flexible as you’d like it to be! The following options are all supported:
+Styling in Astro is meant to be as flexible as you'd like it to be! The following options are all supported:
| Framework | Global CSS | Scoped CSS | CSS Modules |
| :--------------- | :--------: | :--------: | :---------: |
@@ -75,9 +75,9 @@ Styling in Astro is meant to be as flexible as you’d like it to be! The follow
| `.vue` | ✅ | ✅ | ✅ |
| `.svelte` | ✅ | ✅ | ❌ |
-¹ _`.astro` files have no runtime, therefore Scoped CSS takes the place of CSS Modules (styles are still scoped to components, but don’t need dynamic values)_
+¹ _`.astro` files have no runtime, therefore Scoped CSS takes the place of CSS Modules (styles are still scoped to components, but don't need dynamic values)_
-All styles in Astro are automatically [**autoprefixed**](#cross-browser-compatibility), minified and bundled, so you can just write CSS and we’ll handle the rest ✨.
+All styles in Astro are automatically [**autoprefixed**](#cross-browser-compatibility), minified and bundled, so you can just write CSS and we'll handle the rest ✨.
---
@@ -112,7 +112,7 @@ Astro also supports [Sass][sass] out-of-the-box. To enable for each framework:
- **Vue**: `
@@ -243,7 +243,7 @@ import Button from './Button.astro';
```
-This is undesirable because now `