Use consistent tag closing for <svelte:*> elements

Fixes #3061
pull/3074/head
Luca Bonavita 6 years ago
parent 7de5d6c07a
commit cce24b042e

@ -1241,7 +1241,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}/>
``` ```
--- ---
@ -1318,7 +1318,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>
``` ```
--- ---
@ -1335,7 +1335,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