Skip to content

Commit 97f053f

Browse files
committed
Rename HTML interface to Html
1 parent 3fca1a0 commit 97f053f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The latest released version is [`4.0.0`][latest].
2929
* [`Definition`](#definition)
3030
* [`Emphasis`](#emphasis)
3131
* [`Heading`](#heading)
32-
* [`HTML`](#html)
32+
* [`Html`](#html)
3333
* [`Image`](#image)
3434
* [`ImageReference`](#imagereference)
3535
* [`InlineCode`](#inlinecode)
@@ -377,21 +377,21 @@ Yields:
377377
}
378378
```
379379

380-
### `HTML`
380+
### `Html`
381381

382382
```idl
383-
interface HTML <: Literal {
383+
interface Html <: Literal {
384384
type: 'html'
385385
}
386386
```
387387

388-
**HTML** ([**Literal**][dfn-literal]) represents a fragment of raw [HTML][].
388+
**Html** ([**Literal**][dfn-literal]) represents a fragment of raw [HTML][].
389389

390-
**HTML** can be used where [**flow**][dfn-flow-content] or
390+
**Html** can be used where [**flow**][dfn-flow-content] or
391391
[**phrasing**][dfn-phrasing-content] content is expected.
392392
Its content is represented by its `value` field.
393393

394-
HTML nodes do not have the restriction of being valid or complete HTML
394+
**Html** nodes do not have the restriction of being valid or complete HTML
395395
([\[HTML\]][html]) constructs.
396396

397397
For example, the following markdown:
@@ -946,7 +946,7 @@ type Content = Definition | Paragraph
946946

947947
```idl
948948
type FlowContent =
949-
Blockquote | Code | Heading | HTML | List | ThematicBreak | Content
949+
Blockquote | Code | Heading | Html | List | ThematicBreak | Content
950950
```
951951

952952
**Flow** content represent the sections of document.
@@ -962,7 +962,7 @@ type ListContent = ListItem
962962
### `PhrasingContent`
963963

964964
```idl
965-
type PhrasingContent = Break | Emphasis | HTML | Image | ImageReference
965+
type PhrasingContent = Break | Emphasis | Html | Image | ImageReference
966966
| InlineCode | Link | LinkReference | Strong | Text
967967
```
968968

0 commit comments

Comments
 (0)