diff --git a/site/content/guide/00-introduction.md b/site/content/guide/00-introduction.md
index 04ec1b7a8c..f193f32217 100644
--- a/site/content/guide/00-introduction.md
+++ b/site/content/guide/00-introduction.md
@@ -17,7 +17,7 @@ You can build your entire app with Svelte, or you can add it incrementally to an
### Understanding Svelte components
-In Svelte, an application is composed from one or more _components_. A component is a reusable self-contained block of code that encapsulates markup, styles and behaviours that belong together, written into an `.html` file. Here's a simple example:
+In Svelte, an application is composed from one or more *components*. A component is a reusable self-contained block of code that encapsulates markup, styles and behaviours that belong together, written into an `.html` file. Here's a simple example:
```html
diff --git a/site/src/components/icon.html b/site/src/components/icon.html
index e470534358..366b923911 100644
--- a/site/src/components/icon.html
+++ b/site/src/components/icon.html
@@ -9,8 +9,7 @@
diff --git a/site/src/routes/guide/index.html b/site/src/routes/guide/index.html
index c0eb8be74d..637237ee97 100644
--- a/site/src/routes/guide/index.html
+++ b/site/src/routes/guide/index.html
@@ -72,29 +72,6 @@
});
-