From 8cf664ca93ddfbfdf39815abdf23299524af8b6e Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sat, 19 Oct 2024 10:38:37 -0400 Subject: [PATCH] more --- .../03-template-syntax/02-basic-markup.md | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/documentation/docs/03-template-syntax/02-basic-markup.md b/documentation/docs/03-template-syntax/02-basic-markup.md index e40c78a7cb..07b093df87 100644 --- a/documentation/docs/03-template-syntax/02-basic-markup.md +++ b/documentation/docs/03-template-syntax/02-basic-markup.md @@ -2,11 +2,11 @@ title: Basic markup --- -- [basically what we have in the Svelte docs today](https://svelte.dev/docs/basic-markup) +Markup inside a Svelte component can be thought of as HTML++. ## Tags -A lowercase tag, like `
`, denotes a regular HTML element. A capitalised tag, such as `` or ``, indicates a _component_. +A lowercase tag, like `
`, denotes a regular HTML element. A capitalised tag or a tag that uses dot notation, such as `` or ``, indicates a _component_. ```svelte