Update article.md

Minor: typo fix.
This commit is contained in:
Kenneth J Hughes 2019-08-02 08:18:24 -04:00 committed by GitHub
parent 799d373a9b
commit b8c2b9f2b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,7 +110,7 @@ To summarize:
The `<template>` tag is quite unique, because:
- The browser checks HTML syntax inside it (as opposed to using a template string inside a script).
- ...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>`).
- The content becomes interactive: scripts run, `<video autoplay>` plays etc, when inserted into the document.
The `<template>` element does not feature any iteration mechanisms, data binding or variable substitutions, but we can implement those on top of it.