diff --git a/content/tutorial/01-svelte/07-lifecycle/01-onmount/app-a/src/lib/App.svelte b/content/tutorial/01-svelte/07-lifecycle/01-onmount/app-a/src/lib/App.svelte
index 39b42393d..b36b80ce0 100644
--- a/content/tutorial/01-svelte/07-lifecycle/01-onmount/app-a/src/lib/App.svelte
+++ b/content/tutorial/01-svelte/07-lifecycle/01-onmount/app-a/src/lib/App.svelte
@@ -5,7 +5,7 @@
+>
-
\ No newline at end of file
+
diff --git a/content/tutorial/02-advanced-svelte/05-bindings/03-media-elements/app-b/src/lib/AudioPlayer.svelte b/content/tutorial/02-advanced-svelte/05-bindings/03-media-elements/app-b/src/lib/AudioPlayer.svelte
index 2a2a9d89e..fcfbc28ce 100644
--- a/content/tutorial/02-advanced-svelte/05-bindings/03-media-elements/app-b/src/lib/AudioPlayer.svelte
+++ b/content/tutorial/02-advanced-svelte/05-bindings/03-media-elements/app-b/src/lib/AudioPlayer.svelte
@@ -27,13 +27,13 @@
on:ended={() => {
time = 0;
}}
- />
+ >
@@ -69,7 +69,7 @@
});
}}
>
-
+
{duration ? format(duration) : '--:--'}
diff --git a/content/tutorial/02-advanced-svelte/05-bindings/05-bind-this/app-a/src/lib/App.svelte b/content/tutorial/02-advanced-svelte/05-bindings/05-bind-this/app-a/src/lib/App.svelte
index de10e6465..582abc630 100644
--- a/content/tutorial/02-advanced-svelte/05-bindings/05-bind-this/app-a/src/lib/App.svelte
+++ b/content/tutorial/02-advanced-svelte/05-bindings/05-bind-this/app-a/src/lib/App.svelte
@@ -20,7 +20,7 @@
+>
-```
\ No newline at end of file
+```
diff --git a/content/tutorial/02-advanced-svelte/07-composition/04-slot-props/README.md b/content/tutorial/02-advanced-svelte/07-composition/04-slot-props/README.md
index 896528c17..c8dbd89a4 100644
--- a/content/tutorial/02-advanced-svelte/07-composition/04-slot-props/README.md
+++ b/content/tutorial/02-advanced-svelte/07-composition/04-slot-props/README.md
@@ -12,7 +12,7 @@ Open `FilterableList.svelte`. The `` is being rendered for each filtered i
/// file: FilterableList.svelte
-
+
{row.name}{row.hex}{row.rgb}
diff --git a/content/tutorial/02-advanced-svelte/07-composition/05-optional-slots/README.md b/content/tutorial/02-advanced-svelte/07-composition/05-optional-slots/README.md
index 7f1d3d859..c9c219f69 100644
--- a/content/tutorial/02-advanced-svelte/07-composition/05-optional-slots/README.md
+++ b/content/tutorial/02-advanced-svelte/07-composition/05-optional-slots/README.md
@@ -7,7 +7,7 @@ In some cases, you may want to control parts of your component based on whether
```svelte
/// file: App.svelte
---
-
+
namehexrgb
@@ -31,7 +31,7 @@ We can fix that by using the special `$$slots` variable in `FilterableList.svelt
/// file: FilterableList.svelte
+++{#if $$slots.header}+++
diff --git a/content/tutorial/03-sveltekit/02-routing/02-layouts/README.md b/content/tutorial/03-sveltekit/02-routing/02-layouts/README.md
index e7812fead..79898d168 100644
--- a/content/tutorial/03-sveltekit/02-routing/02-layouts/README.md
+++ b/content/tutorial/03-sveltekit/02-routing/02-layouts/README.md
@@ -14,7 +14,7 @@ src/routes/
└ +page.svelte
```
-...and move the duplicated content from the `+page.svelte` files into the new `+layout.svelte` file. The `` element is where the page content will be rendered:
+...and move the duplicated content from the `+page.svelte` files into the new `+layout.svelte` file. The `` element is where the page content will be rendered:
```svelte
/// file: src/routes/+layout.svelte
@@ -23,7 +23,7 @@ src/routes/
about
-
+
```
A `+layout.svelte` file applies to every child route, including the sibling `+page.svelte` (if it exists). You can nest layouts to arbitrary depth.
diff --git a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md
index 0ea2b69c5..a96aab1ad 100644
--- a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md
+++ b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md
@@ -19,7 +19,7 @@ Now, add a sidebar in the layout for the post page: