@@ -106,7 +106,7 @@ interface Parent <: UnistParent {
106
106
```
107
107
108
108
** Parent** ([ ** UnistParent** ] [ dfn-unist-parent ] ) represents a node in mdast
109
- containing other nodes (said to be [ _ children _ ] [ term-child ] ).
109
+ containing other nodes (said to be [ * children * ] [ term-child ] ).
110
110
111
111
Its content is limited to only other mdast [ ** content** ] [ dfn-content ] .
112
112
@@ -133,8 +133,8 @@ interface Root <: Parent {
133
133
134
134
** Root** ([ ** Parent** ] [ dfn-parent ] ) represents a document.
135
135
136
- ** Root** can be used as the [ _ root _ ] [ term-root ] of a [ _ tree _ ] [ term-tree ] , never
137
- as a [ _ child _ ] [ term-child ] .
136
+ ** Root** can be used as the [ * root * ] [ term-root ] of a [ * tree * ] [ term-tree ] , never
137
+ as a [ * child * ] [ term-child ] .
138
138
Its content model is not limited to [ ** top-level** ] [ dfn-top-level-content ]
139
139
content, but can contain any [ ** content** ] [ dfn-content ] with the restriction
140
140
that all content must be of the same category.
@@ -342,7 +342,7 @@ It represents whether the item is done (when `true`), not done (when `false`),
342
342
or indeterminate or not applicable (when ` null ` or not present).
343
343
344
344
A ` spread ` field can be present.
345
- It represents that the item contains two or more [ _ children _ ] [ term-child ]
345
+ It represents that the item contains two or more [ * children * ] [ term-child ]
346
346
separated by a blank line (when ` true ` ), or not (when ` false ` or not present).
347
347
348
348
For example, the following markdown:
@@ -380,7 +380,7 @@ interface Table <: Parent {
380
380
** Table** can be used where [ ** block** ] [ dfn-block-content ] content is expected.
381
381
Its content model is [ ** table** ] [ dfn-table-content ] content.
382
382
383
- The [ _ head _ ] [ term-head ] of the node represents the labels of the columns.
383
+ The [ * head * ] [ term-head ] of the node represents the labels of the columns.
384
384
385
385
An ` align ` field can be present.
386
386
If present, it must be a list of [ ** alignType** s] [ dfn-enum-align-type ] .
@@ -446,7 +446,7 @@ interface TableRow <: Parent {
446
446
expected.
447
447
Its content model is [ ** row** ] [ dfn-row-content ] content.
448
448
449
- If the node is a [ _ head _ ] [ term-head ] , it represents the labels of the columns
449
+ If the node is a [ * head * ] [ term-head ] , it represents the labels of the columns
450
450
for its parent [ ** Table** ] [ dfn-table ] .
451
451
452
452
For an example, see [ ** Table** ] [ dfn-table ] .
@@ -461,7 +461,7 @@ interface TableCell <: Parent {
461
461
```
462
462
463
463
** TableCell** ([ ** Parent** ] [ dfn-parent ] ) represents a header cell in a
464
- [ ** Table** ] [ dfn-table ] , if its parent is a [ _ head _ ] [ term-head ] , or a data
464
+ [ ** Table** ] [ dfn-table ] , if its parent is a [ * head * ] [ term-head ] , or a data
465
465
cell otherwise.
466
466
467
467
** TableCell** can be used where [ ** row** ] [ dfn-row-content ] content is expected.
@@ -1247,7 +1247,7 @@ type FrontmatterContent = YAML
1247
1247
** Frontmatter** content represent out-of-band information about the document.
1248
1248
1249
1249
If frontmatter is present, it must be limited to one node in the
1250
- [ _ tree _ ] [ term-tree ] , and can only exist as a [ _ head _ ] [ term-head ] .
1250
+ [ * tree * ] [ term-tree ] , and can only exist as a [ * head * ] [ term-head ] .
1251
1251
1252
1252
### ` DefinitionContent `
1253
1253
0 commit comments