Use consistent tag closing for <svelte:*> elements

Fixes #3061
pull/3077/head
Luca Bonavita 5 years ago committed by Conduitry
parent a7dd227336
commit 0b836872cf

@ -1249,7 +1249,7 @@ It cannot appear at the top level of your markup; it must be inside an if or eac
### `<svelte:component>`
```sv
<svelte:component this={expression}>
<svelte:component this={expression}/>
```
---
@ -1326,7 +1326,7 @@ As with `<svelte:window>`, this element allows you to add listeners to events on
### `<svelte:head>`
```sv
<svelte:head>
<svelte:head>...</svelte:head>
```
---
@ -1343,7 +1343,7 @@ This element makes it possible to insert elements into `document.head`. During s
### `<svelte:options>`
```sv
<svelte:options option={value}>
<svelte:options option={value}/>
```
---
@ -1359,4 +1359,4 @@ The `<svelte:options>` element provides a place to specify per-component compile
```html
<svelte:options tag="my-custom-element"/>
```
```

Loading…
Cancel
Save