Skip to content

Commit 87bdf4b

Browse files
authored
Merge branch 'main' into fix-inline-styles-info
2 parents ba61fcd + 0b76718 commit 87bdf4b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/content/docs/en/reference/configuration-reference.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,8 @@ To enable this feature, set `experimental.assets` to `true` in your Astro config
752752
<p>
753753

754754
**Type:** `'always' | 'auto' | 'never'`<br />
755-
**Default:** `never`
755+
**Default:** `never`<br />
756+
<Since v="2.4.0" />
756757
</p>
757758

758759
Control whether styles are sent to the browser in a separate css file or inlined into `<style>` tags. Choose from the following options:

src/content/docs/en/tutorial/4-layouts/2.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Can you figure out what should go in the blanks so that the following two compon
155155
---
156156
<h1>{frontmatter.title}</h1>
157157
<p>Written by:{frontmatter.author } on {frontmatter.pubDate}</p>
158-
< slot />
158+
<slot />
159159
<Footer />
160160
```
161161
</details>

src/content/docs/es/tutorial/4-layouts/2.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const { frontmatter } = Astro.props;
155155
---
156156
<h1>{frontmatter.title}</h1>
157157
<p>Escrito por:{frontmatter.author } on {frontmatter.pubDate}</p>
158-
< slot />
158+
<slot />
159159
<Footer />
160160
```
161161
</details>

0 commit comments

Comments
 (0)