diff options
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/core-concepts/astro-components.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/core-concepts/astro-components.md b/docs/src/pages/core-concepts/astro-components.md index 84715de7d..66ca91ec5 100644 --- a/docs/src/pages/core-concepts/astro-components.md +++ b/docs/src/pages/core-concepts/astro-components.md @@ -340,8 +340,8 @@ import TwitterTimeline from '../components/TwitterTimeline.astro'; | Fragments | Automatic top-level, `<>` inside functions | Wrap with `<Fragment>` or `<>` | | Multiple frameworks per-file | Yes | No | | Modifying `<head>` | Just use `<head>` | Per-framework (`<Head>`, `<svelte:head>`, etc) | -| Comment Style | `<!-- HTML -->` | `{/* JavaScript */}` | -| Special Characters | ` ` | `{'\xa0'}` or `{String.fromCharCode(160)}` | +| Comment Style | `<!-- HTML -->` | `{/* JavaScript */} | +| Special Characters | ` ` | ` ` | | Attributes | `dash-case` | `camelCase` | ## URL resolution |