Skip to content

Commit ea3d264

Browse files
committed
Migrate from wooorm to syntax-tree
1 parent 3e991de commit ea3d264

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

readme.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -142,76 +142,76 @@ A list of **vfile**-related utilities can be found at [**vfile**][vfile].
142142

143143
### List of Utilities
144144

145-
* [`unist-util-assert`](https://github.com/wooorm/unist-util-assert)
145+
* [`unist-util-assert`](https://github.com/syntax-tree/unist-util-assert)
146146
— Assert Unist nodes;
147147
* [`unist-util-filter`](https://github.com/eush77/unist-util-filter)
148148
— Create a new tree with all nodes that pass the given function;
149149
* [`unist-util-find`](https://github.com/blahah/unist-util-find)
150150
— Find a node by condition;
151-
* [`unist-util-find-after`](https://github.com/wooorm/unist-util-find-after)
151+
* [`unist-util-find-after`](https://github.com/syntax-tree/unist-util-find-after)
152152
— Find a node after another node;
153-
* [`unist-util-find-all-after`](https://github.com/wooorm/unist-util-find-all-after)
153+
* [`unist-util-find-all-after`](https://github.com/syntax-tree/unist-util-find-all-after)
154154
— Find nodes after another node;
155-
* [`unist-util-find-all-before`](https://github.com/wooorm/unist-util-find-all-before)
155+
* [`unist-util-find-all-before`](https://github.com/syntax-tree/unist-util-find-all-before)
156156
— Find nodes before another node;
157-
* [`unist-util-find-before`](https://github.com/wooorm/unist-util-find-before)
157+
* [`unist-util-find-before`](https://github.com/syntax-tree/unist-util-find-before)
158158
— Find a node before another node;
159-
* [`unist-util-generated`](https://github.com/wooorm/unist-util-generated)
159+
* [`unist-util-generated`](https://github.com/syntax-tree/unist-util-generated)
160160
— Check if a node is generated;
161161
* [`unist-util-index`](https://github.com/eush77/unist-util-index)
162162
— Index nodes by property or computed key;
163-
* [`unist-util-inspect`](https://github.com/wooorm/unist-util-inspect)
163+
* [`unist-util-inspect`](https://github.com/syntax-tree/unist-util-inspect)
164164
— Node inspector;
165-
* [`unist-util-is`](https://github.com/wooorm/unist-util-is)
165+
* [`unist-util-is`](https://github.com/syntax-tree/unist-util-is)
166166
— Check if a node passes a test
167167
* [`unist-util-map`](https://github.com/azu/unist-util-map)
168168
— Create a new tree by mapping nodes;
169-
* [`unist-util-modify-children`](https://github.com/wooorm/unist-util-modify-children)
169+
* [`unist-util-modify-children`](https://github.com/syntax-tree/unist-util-modify-children)
170170
— Modify direct children of a parent;
171171
* [`unist-util-parents`](https://github.com/eush77/unist-util-parents)
172172
`parent` references on nodes;
173-
* [`unist-util-position`](https://github.com/wooorm/unist-util-position)
173+
* [`unist-util-position`](https://github.com/syntax-tree/unist-util-position)
174174
— Get the position of nodes;
175175
* [`unist-util-remove`](https://github.com/eush77/unist-util-remove)
176176
— Remove nodes from Unist trees;
177-
* [`unist-util-remove-position`](https://github.com/wooorm/unist-util-remove-position)
177+
* [`unist-util-remove-position`](https://github.com/syntax-tree/unist-util-remove-position)
178178
— Remove `position`s from a unist tree;
179179
* [`unist-util-select`](https://github.com/eush77/unist-util-select)
180180
— Select nodes with CSS-like selectors;
181-
* [`unist-util-source`](https://github.com/wooorm/unist-util-source)
181+
* [`unist-util-source`](https://github.com/syntax-tree/unist-util-source)
182182
— Get the source of a value (node, location);
183-
* [`unist-util-stringify-position`](https://github.com/wooorm/unist-util-stringify-position)
183+
* [`unist-util-stringify-position`](https://github.com/syntax-tree/unist-util-stringify-position)
184184
— Stringify a node, location, or position;
185-
* [`unist-util-visit`](https://github.com/wooorm/unist-util-visit)
185+
* [`unist-util-visit`](https://github.com/syntax-tree/unist-util-visit)
186186
— Recursively walk over nodes;
187-
* [`unist-util-visit-parents`](https://github.com/wooorm/unist-util-visit-parents)
187+
* [`unist-util-visit-parents`](https://github.com/syntax-tree/unist-util-visit-parents)
188188
— Recursively walk over nodes, with a stack of parents;
189-
* [`unist-util-visit-children`](https://github.com/wooorm/unist-util-visit-children)
189+
* [`unist-util-visit-children`](https://github.com/syntax-tree/unist-util-visit-children)
190190
— Visit direct children of a parent;
191191
* [`unist-builder`](https://github.com/eush77/unist-builder)
192192
— Helper for creating trees.
193193

194194
<!-- Definitions -->
195195

196-
[logo]: https://cdn.rawgit.com/wooorm/unist/76af1b6/logo.svg
196+
[logo]: https://cdn.rawgit.com/syntax-tree/unist/76af1b6/logo.svg
197197

198-
[releases]: https://github.com/wooorm/unist/releases
198+
[releases]: https://github.com/syntax-tree/unist/releases
199199

200-
[first-retext-commit]: https://github.com/wooorm/retext/commit/8fcb1ff
200+
[first-retext-commit]: https://github.com/syntax-tree/retext/commit/8fcb1ff
201201

202-
[first-remark-commit]: https://github.com/wooorm/remark/commit/19585b8
202+
[first-remark-commit]: https://github.com/syntax-tree/remark/commit/19585b8
203203

204204
[retext]: https://github.com/wooorm/retext
205205

206206
[remark]: https://github.com/wooorm/remark
207207

208208
[hast]: https://github.com/wooorm/hast
209209

210-
[nlcst]: https://github.com/wooorm/nlcst
210+
[nlcst]: https://github.com/syntax-tree/nlcst
211211

212-
[mdast]: https://github.com/wooorm/mdast
212+
[mdast]: https://github.com/syntax-tree/mdast
213213

214-
[vfile]: https://github.com/wooorm/vfile
214+
[vfile]: https://github.com/syntax-tree/vfile
215215

216216
[remark-html]: https://github.com/wooorm/remark-html
217217

0 commit comments

Comments
 (0)