We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799d373 commit b8c2b9fCopy full SHA for b8c2b9f
8-web-components/4-template-element/article.md
@@ -110,7 +110,7 @@ To summarize:
110
The `<template>` tag is quite unique, because:
111
112
- The browser checks HTML syntax inside it (as opposed to using a template string inside a script).
113
-- ...But still allows to use any top-level HTML tags, even those that don't make sense without proper wrappers (e.g. `<tr>`).
+- ...But still allows use of any top-level HTML tags, even those that don't make sense without proper wrappers (e.g. `<tr>`).
114
- The content becomes interactive: scripts run, `<video autoplay>` plays etc, when inserted into the document.
115
116
The `<template>` element does not feature any iteration mechanisms, data binding or variable substitutions, but we can implement those on top of it.
0 commit comments