Remove unused note

This commit is contained in:
Wilson Lin 2019-12-28 17:35:43 +11:00
parent e65b8436bf
commit d368092aa7
1 changed files with 0 additions and 41 deletions

View File

@ -1,41 +0,0 @@
# Tag types
|Type|Expected content|
|---|---|
|Formatting tags|Text nodes.|
|Content tags|Formatting tags, text nodes.|
|Layout tags|Layout tags, content tags.|
|Content-first tags|Content of content tags or layout tags (but not both).|
## Formatting tags
```html
<strong> moat </strong>
```
## Content tags
```html
<p>Some <strong>content</strong></p>
```
## Content-first tags
```html
<li>Anthony</li>
```
```html
<li>
<div>
</div>
</li>
```
## Layout tags
```html
<div>
<div></div>
</div>
```