Skip to content

Commit bb86b99

Browse files
committed
Update dev-dependencies
1 parent ec1d07a commit bb86b99

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"Eugene Sharygin <[email protected]>"
1414
],
1515
"devDependencies": {
16-
"remark-cli": "^5.0.0",
17-
"remark-preset-wooorm": "^4.0.0"
16+
"remark-cli": "^6.0.0",
17+
"remark-preset-wooorm": "^5.0.0"
1818
},
1919
"scripts": {
2020
"format": "remark . -qfo"

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ interface Parent <: UnistParent {
106106
```
107107

108108
**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]).
110110

111111
Its content is limited to only other mdast [**content**][dfn-content].
112112

@@ -133,8 +133,8 @@ interface Root <: Parent {
133133

134134
**Root** ([**Parent**][dfn-parent]) represents a document.
135135

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].
138138
Its content model is not limited to [**top-level**][dfn-top-level-content]
139139
content, but can contain any [**content**][dfn-content] with the restriction
140140
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`),
342342
or indeterminate or not applicable (when `null` or not present).
343343

344344
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]
346346
separated by a blank line (when `true`), or not (when `false` or not present).
347347

348348
For example, the following markdown:
@@ -380,7 +380,7 @@ interface Table <: Parent {
380380
**Table** can be used where [**block**][dfn-block-content] content is expected.
381381
Its content model is [**table**][dfn-table-content] content.
382382

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.
384384

385385
An `align` field can be present.
386386
If present, it must be a list of [**alignType**s][dfn-enum-align-type].
@@ -446,7 +446,7 @@ interface TableRow <: Parent {
446446
expected.
447447
Its content model is [**row**][dfn-row-content] content.
448448

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
450450
for its parent [**Table**][dfn-table].
451451

452452
For an example, see [**Table**][dfn-table].
@@ -461,7 +461,7 @@ interface TableCell <: Parent {
461461
```
462462

463463
**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
465465
cell otherwise.
466466

467467
**TableCell** can be used where [**row**][dfn-row-content] content is expected.
@@ -1247,7 +1247,7 @@ type FrontmatterContent = YAML
12471247
**Frontmatter** content represent out-of-band information about the document.
12481248

12491249
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].
12511251

12521252
### `DefinitionContent`
12531253

0 commit comments

Comments
 (0)