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>` ### `<svelte:component>`
```sv ```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>` ### `<svelte:head>`
```sv ```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>` ### `<svelte:options>`
```sv ```sv
<svelte:options option={value}> <svelte:options option={value}/>
``` ```
--- ---

Loading…
Cancel
Save