Skip to content

Commit f7a17d8

Browse files
committed
Move list of utilities up before CST definition
1 parent 4051f1d commit f7a17d8

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

readme.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This document describes version 1.0.0 of **NLCST**.
1818

1919
## Table of Contents
2020

21+
* [List of Utilities](#list-of-utilities)
2122
* [CST](#cst)
2223
* [Root](#root)
2324
* [Paragraph](#paragraph)
@@ -28,9 +29,24 @@ This document describes version 1.0.0 of **NLCST**.
2829
* [WhiteSpace](#whitespace)
2930
* [Source](#source)
3031
* [TextNode](#textnode)
31-
* [List of Utilities](#list-of-utilities)
3232
* [License](#license)
3333

34+
## List of Utilities
35+
36+
* [`nlcst-is-literal`](https://github.com/syntax-tree/nlcst-is-literal)
37+
— Check whether a node is meant literally;
38+
* [`nlcst-normalize`](https://github.com/syntax-tree/nlcst-normalize)
39+
— Normalize a word for easier comparison;
40+
* [`nlcst-search`](https://github.com/syntax-tree/nlcst-search)
41+
— Search for patterns in an NLCST tree;
42+
* [`nlcst-to-string`](https://github.com/syntax-tree/nlcst-to-string)
43+
— Stringify a node;
44+
* [`nlcst-test`](https://github.com/syntax-tree/nlcst-test)
45+
— Validate a NLCST node;
46+
47+
In addition, see [**Unist**][unist] for other utilities which
48+
work with **retext** nodes.
49+
3450
## CST
3551

3652
### `Root`
@@ -136,22 +152,6 @@ interface TextNode < Text {
136152
}
137153
```
138154

139-
## List of Utilities
140-
141-
* [`nlcst-is-literal`](https://github.com/syntax-tree/nlcst-is-literal)
142-
— Check whether a node is meant literally;
143-
* [`nlcst-normalize`](https://github.com/syntax-tree/nlcst-normalize)
144-
— Normalize a word for easier comparison;
145-
* [`nlcst-search`](https://github.com/syntax-tree/nlcst-search)
146-
— Search for patterns in an NLCST tree;
147-
* [`nlcst-to-string`](https://github.com/syntax-tree/nlcst-to-string)
148-
— Stringify a node;
149-
* [`nlcst-test`](https://github.com/syntax-tree/nlcst-test)
150-
— Validate a NLCST node;
151-
152-
In addition, see [**Unist**][unist] for other utilities which
153-
work with **retext** nodes.
154-
155155
## License
156156

157157
MIT © Titus Wormer

0 commit comments

Comments
 (0)