@@ -112,7 +112,7 @@ abstract interface **Parent** ([**Node**](#node)).
112
112
113
113
``` idl
114
114
interface Parent <: Node {
115
- children: [Node];
115
+ children: [Node];
116
116
}
117
117
```
118
118
@@ -123,7 +123,7 @@ Nodes containing a value extend the abstract interface **Text**
123
123
124
124
``` idl
125
125
interface Text <: Node {
126
- value: string;
126
+ value: string;
127
127
}
128
128
```
129
129
@@ -145,58 +145,40 @@ A list of **vfile**-related utilities can be found at [**vfile**][vfile].
145
145
* [ ` unist-util-filter ` ] ( https://github.com/eush77/unist-util-filter )
146
146
— Create a new Unist tree with all nodes that pass the test
147
147
implemented by the provided function;
148
-
149
148
* [ ` unist-util-find-after ` ] ( https://github.com/wooorm/unist-util-find-after )
150
149
— Find a node after another node;
151
-
152
150
* [ ` unist-util-find-all-after ` ] ( https://github.com/wooorm/unist-util-find-all-after )
153
151
— Find nodes after another node;
154
-
155
152
* [ ` unist-util-find-all-before ` ] ( https://github.com/wooorm/unist-util-find-all-before )
156
153
— Find nodes before another node;
157
-
158
154
* [ ` unist-util-find-before ` ] ( https://github.com/wooorm/unist-util-find-before )
159
155
— Find a node before another node;
160
-
161
156
* [ ` unist-util-generated ` ] ( https://github.com/wooorm/unist-util-generated )
162
157
— Check if a node is generated;
163
-
164
158
* [ ` unist-util-index ` ] ( https://github.com/eush77/unist-util-index )
165
159
— Index nodes by property or computed key;
166
-
167
160
* [ ` unist-util-inspect ` ] ( https://github.com/wooorm/unist-util-inspect )
168
161
— Node inspector;
169
-
170
162
* [ ` unist-util-is ` ] ( https://github.com/wooorm/unist-util-is )
171
163
— Check if a node passes a test
172
-
173
164
* [ ` unist-util-modify-children ` ] ( https://github.com/wooorm/unist-util-modify-children )
174
165
— Modify direct children of a parent;
175
-
176
166
* [ ` unist-util-parents ` ] ( https://github.com/eush77/unist-util-parents )
177
167
— ` parent ` references on nodes;
178
-
179
168
* [ ` unist-util-position ` ] ( https://github.com/wooorm/unist-util-position )
180
169
— Get the position of nodes;
181
-
182
170
* [ ` unist-util-remove ` ] ( https://github.com/eush77/unist-util-remove )
183
171
— Remove nodes from Unist trees;
184
-
185
172
* [ ` unist-util-remove-position ` ] ( https://github.com/wooorm/unist-util-remove-position )
186
173
— Remove ` position ` s from a unist tree;
187
-
188
174
* [ ` unist-util-select ` ] ( https://github.com/eush77/unist-util-select )
189
175
— Select nodes with CSS-like selectors;
190
-
191
176
* [ ` unist-util-stringify-position ` ] ( https://github.com/wooorm/unist-util-stringify-position )
192
177
— Stringify a node, location, or position;
193
-
194
178
* [ ` unist-util-visit ` ] ( https://github.com/wooorm/unist-util-visit )
195
179
— Recursively walk over nodes;
196
-
197
180
* [ ` unist-util-visit-children ` ] ( https://github.com/wooorm/unist-util-visit-children )
198
181
— Visit direct children of a parent;
199
-
200
182
* [ ` unist-builder ` ] ( https://github.com/eush77/unist-builder )
201
183
— Helper for creating trees.
202
184
0 commit comments