Skip to content

Commit d249445

Browse files
committed
Add references to xast
1 parent c3ba7cd commit d249445

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

readme.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ The latest released version is [`2.0.0`][release].
1919
* [Syntax tree](#syntax-tree)
2020
* [Where this specification fits](#where-this-specification-fits)
2121
* [Nodes](#nodes)
22-
* [Node](#node)
23-
* [Parent](#parent)
24-
* [Literal](#literal)
22+
* [`Node`](#node)
23+
* [`Parent`](#parent)
24+
* [`Literal`](#literal)
2525
* [Glossary](#glossary)
2626
* [Tree traversal](#tree-traversal)
2727
* [Utilities](#utilities)
@@ -59,7 +59,8 @@ unist is not intended to be self-sufficient.
5959
Instead, it is expected that other specifications implement unist and extend it
6060
to express language specific nodes.
6161
For example, see projects such as [**mdast**][mdast] (for Markdown),
62-
[**hast**][hast] (for HTML), and [**nlcst**][nlcst] (for natural language).
62+
[**hast**][hast] (for HTML), [**xast**][xast] (for XML), and [**nlcst**][nlcst]
63+
(for natural language).
6364

6465
unist relates to [JSON][] in that compliant syntax trees can be expressed
6566
completely in JSON.
@@ -426,6 +427,7 @@ unist:
426427

427428
* [mdast utilities](https://github.com/syntax-tree/mdast#list-of-utilities)
428429
* [hast utilities](https://github.com/syntax-tree/hast#list-of-utilities)
430+
* [xast utilities](https://github.com/syntax-tree/xast#list-of-utilities)
429431
* [nlcst utilities](https://github.com/syntax-tree/nlcst#list-of-utilities)
430432

431433
### List of Utilities
@@ -447,7 +449,8 @@ unist:
447449
* [`unist-util-find-before`](https://github.com/syntax-tree/unist-util-find-before)
448450
— Find a node before another node
449451
* [`unist-util-flat-filter`](https://github.com/unicorn-utterances/unist-util-flat-filter)
450-
— Create a new tree with all nodes that pass the given function without references to the parent
452+
— Create a new tree with all nodes that pass the given function without
453+
references to the parent
451454
* [`unist-util-flatmap`](https://gitlab.com/staltz/unist-util-flatmap)
452455
— Create a new tree by expanding a node into many
453456
* [`unist-util-generated`](https://github.com/syntax-tree/unist-util-generated)
@@ -518,8 +521,8 @@ ways to get started.
518521
See [`support.md`][support] for ways to get help.
519522
Ideas for new utilities and tools can be posted in [`syntax-tree/ideas`][ideas].
520523

521-
A curated list of awesome syntax-tree, unist, hast, mdast, and nlcst resources
522-
can be found in [awesome syntax-tree][awesome].
524+
A curated list of awesome syntax-tree, unist, hast, xast, mdast, and nlcst
525+
resources can be found in [awesome syntax-tree][awesome].
523526

524527
This project has a [Code of Conduct][coc].
525528
By interacting with this repository, organisation, or community you agree to
@@ -659,6 +662,8 @@ for contributing to unist and related projects!
659662

660663
[hast]: https://github.com/syntax-tree/hast
661664

665+
[xast]: https://github.com/syntax-tree/xast
666+
662667
[nlcst]: https://github.com/syntax-tree/nlcst
663668

664669
[mdast]: https://github.com/syntax-tree/mdast

0 commit comments

Comments
 (0)