Rename YAML interface to Yaml · syntax-tree/mdast@fad4dcc (original) (raw)

Original file line number Diff line number Diff line change
@@ -1265,18 +1265,18 @@ type TableContent = TableRow
1265 1265
1266 1266 The following interfaces are found with YAML.
1267 1267
1268 -#### `YAML`
1268 +#### `Yaml`
1269 1269
1270 1270 ```idl
1271 -interface YAML <: Literal {
1271 +interface Yaml <: Literal {
1272 1272 type: 'yaml'
1273 1273 }
1274 1274 ```
1275 1275
1276 -**YAML** ([**Literal**][dfn-literal]) represents a collection of metadata for
1276 +**Yaml** ([**Literal**][dfn-literal]) represents a collection of metadata for
1277 1277 the document in the YAML ([\[YAML\]][yaml]) data serialisation language.
1278 1278
1279 -**YAML** can be used where [**frontmatter**][dfn-frontmatter-content] content is
1279 +**Yaml** can be used where [**frontmatter**][dfn-frontmatter-content] content is
1280 1280 expected.
1281 1281 Its content is represented by its `value` field.
1282 1282
@@ -1297,7 +1297,7 @@ Yields:
1297 1297 #### `FrontmatterContent`
1298 1298
1299 1299 ```idl
1300 -type FrontmatterContent = YAML
1300 +type FrontmatterContent = Yaml
1301 1301 ```
1302 1302
1303 1303 **Frontmatter** content represent out-of-band information about the document.