Skip to content

Commit

Permalink
Rename YAML interface to Yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Jun 28, 2023
1 parent 97f053f commit fad4dcc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1265,18 +1265,18 @@ type TableContent = TableRow

The following interfaces are found with YAML.

#### `YAML`
#### `Yaml`

```idl
interface YAML <: Literal {
interface Yaml <: Literal {
type: 'yaml'
}
```

**YAML** ([**Literal**][dfn-literal]) represents a collection of metadata for
**Yaml** ([**Literal**][dfn-literal]) represents a collection of metadata for
the document in the YAML ([\[YAML\]][yaml]) data serialisation language.

**YAML** can be used where [**frontmatter**][dfn-frontmatter-content] content is
**Yaml** can be used where [**frontmatter**][dfn-frontmatter-content] content is
expected.
Its content is represented by its `value` field.

Expand All @@ -1297,7 +1297,7 @@ Yields:
#### `FrontmatterContent`

```idl
type FrontmatterContent = YAML
type FrontmatterContent = Yaml
```

**Frontmatter** content represent out-of-band information about the document.
Expand Down

0 comments on commit fad4dcc

Please sign in to comment.