Skip to content

Commit 00624ae

Browse files
committed
Refactor code-style
1 parent 3109c9e commit 00624ae

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

readme.md

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ abstract interface **Parent** ([**Node**](#node)).
112112

113113
```idl
114114
interface Parent <: Node {
115-
children: [Node];
115+
children: [Node];
116116
}
117117
```
118118

@@ -123,7 +123,7 @@ Nodes containing a value extend the abstract interface **Text**
123123

124124
```idl
125125
interface Text <: Node {
126-
value: string;
126+
value: string;
127127
}
128128
```
129129

@@ -145,58 +145,40 @@ A list of **vfile**-related utilities can be found at [**vfile**][vfile].
145145
* [`unist-util-filter`](https://github.com/eush77/unist-util-filter)
146146
— Create a new Unist tree with all nodes that pass the test
147147
implemented by the provided function;
148-
149148
* [`unist-util-find-after`](https://github.com/wooorm/unist-util-find-after)
150149
— Find a node after another node;
151-
152150
* [`unist-util-find-all-after`](https://github.com/wooorm/unist-util-find-all-after)
153151
— Find nodes after another node;
154-
155152
* [`unist-util-find-all-before`](https://github.com/wooorm/unist-util-find-all-before)
156153
— Find nodes before another node;
157-
158154
* [`unist-util-find-before`](https://github.com/wooorm/unist-util-find-before)
159155
— Find a node before another node;
160-
161156
* [`unist-util-generated`](https://github.com/wooorm/unist-util-generated)
162157
— Check if a node is generated;
163-
164158
* [`unist-util-index`](https://github.com/eush77/unist-util-index)
165159
— Index nodes by property or computed key;
166-
167160
* [`unist-util-inspect`](https://github.com/wooorm/unist-util-inspect)
168161
— Node inspector;
169-
170162
* [`unist-util-is`](https://github.com/wooorm/unist-util-is)
171163
— Check if a node passes a test
172-
173164
* [`unist-util-modify-children`](https://github.com/wooorm/unist-util-modify-children)
174165
— Modify direct children of a parent;
175-
176166
* [`unist-util-parents`](https://github.com/eush77/unist-util-parents)
177167
`parent` references on nodes;
178-
179168
* [`unist-util-position`](https://github.com/wooorm/unist-util-position)
180169
— Get the position of nodes;
181-
182170
* [`unist-util-remove`](https://github.com/eush77/unist-util-remove)
183171
— Remove nodes from Unist trees;
184-
185172
* [`unist-util-remove-position`](https://github.com/wooorm/unist-util-remove-position)
186173
— Remove `position`s from a unist tree;
187-
188174
* [`unist-util-select`](https://github.com/eush77/unist-util-select)
189175
— Select nodes with CSS-like selectors;
190-
191176
* [`unist-util-stringify-position`](https://github.com/wooorm/unist-util-stringify-position)
192177
— Stringify a node, location, or position;
193-
194178
* [`unist-util-visit`](https://github.com/wooorm/unist-util-visit)
195179
— Recursively walk over nodes;
196-
197180
* [`unist-util-visit-children`](https://github.com/wooorm/unist-util-visit-children)
198181
— Visit direct children of a parent;
199-
200182
* [`unist-builder`](https://github.com/eush77/unist-builder)
201183
— Helper for creating trees.
202184

0 commit comments

Comments
 (0)