Skip to content

Commit 70451b9

Browse files
committed
Update dev-dependencies
1 parent b2e5efd commit 70451b9

File tree

2 files changed

+61
-61
lines changed

2 files changed

+61
-61
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"Eugene Sharygin <[email protected]>"
1414
],
1515
"devDependencies": {
16-
"remark-cli": "^11.0.0",
17-
"remark-preset-wooorm": "^9.0.0"
16+
"remark-cli": "^12.0.0",
17+
"remark-preset-wooorm": "^10.0.0"
1818
},
1919
"scripts": {
2020
"format": "remark . -qfo",

readme.md

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@ The latest released version is [`1.0.2`][latest].
1414

1515
## Contents
1616

17-
* [Introduction](#introduction)
18-
* [Where this specification fits](#where-this-specification-fits)
19-
* [Types](#types)
20-
* [Nodes (abstract)](#nodes-abstract)
21-
* [`Literal`](#literal)
22-
* [`Parent`](#parent)
23-
* [Nodes](#nodes)
24-
* [`Paragraph`](#paragraph)
25-
* [`Punctuation`](#punctuation)
26-
* [`Root`](#root)
27-
* [`Sentence`](#sentence)
28-
* [`Source`](#source)
29-
* [`Symbol`](#symbol)
30-
* [`Text`](#text)
31-
* [`WhiteSpace`](#whitespace)
32-
* [`Word`](#word)
33-
* [Glossary](#glossary)
34-
* [List of utilities](#list-of-utilities)
35-
* [Related](#related)
36-
* [References](#references)
37-
* [Contribute](#contribute)
38-
* [Acknowledgments](#acknowledgments)
39-
* [License](#license)
17+
* [Introduction](#introduction)
18+
* [Where this specification fits](#where-this-specification-fits)
19+
* [Types](#types)
20+
* [Nodes (abstract)](#nodes-abstract)
21+
* [`Literal`](#literal)
22+
* [`Parent`](#parent)
23+
* [Nodes](#nodes)
24+
* [`Paragraph`](#paragraph)
25+
* [`Punctuation`](#punctuation)
26+
* [`Root`](#root)
27+
* [`Sentence`](#sentence)
28+
* [`Source`](#source)
29+
* [`Symbol`](#symbol)
30+
* [`Text`](#text)
31+
* [`WhiteSpace`](#whitespace)
32+
* [`Word`](#word)
33+
* [Glossary](#glossary)
34+
* [List of utilities](#list-of-utilities)
35+
* [Related](#related)
36+
* [References](#references)
37+
* [Contribute](#contribute)
38+
* [Acknowledgments](#acknowledgments)
39+
* [License](#license)
4040

4141
## Introduction
4242

@@ -242,48 +242,48 @@ See the [unist glossary][glossary].
242242

243243
See the [unist list of utilities][utilities] for more utilities.
244244

245-
* [`nlcst-affix-emoticon-modifier`](https://github.com/syntax-tree/nlcst-affix-emoticon-modifier)
246-
— merge affix emoticons into the previous sentence
247-
* [`nlcst-emoji-modifier`](https://github.com/syntax-tree/nlcst-emoji-modifier)
248-
— support emoji
249-
* [`nlcst-emoticon-modifier`](https://github.com/syntax-tree/nlcst-emoticon-modifier)
250-
— support emoticons
251-
* [`nlcst-is-literal`](https://github.com/syntax-tree/nlcst-is-literal)
252-
— check whether a node is meant literally
253-
* [`nlcst-normalize`](https://github.com/syntax-tree/nlcst-normalize)
254-
— normalize a word for easier comparison
255-
* [`nlcst-search`](https://github.com/syntax-tree/nlcst-search)
256-
— search for patterns
257-
* [`nlcst-to-string`](https://github.com/syntax-tree/nlcst-to-string)
258-
— serialize a node
259-
* [`nlcst-test`](https://github.com/syntax-tree/nlcst-test)
260-
— validate a node
261-
* [`mdast-util-to-nlcst`](https://github.com/syntax-tree/mdast-util-to-nlcst)
262-
— transform mdast to nlcst
263-
* [`hast-util-to-nlcst`](https://github.com/syntax-tree/hast-util-to-nlcst)
264-
— transform hast to nlcst
245+
* [`nlcst-affix-emoticon-modifier`](https://github.com/syntax-tree/nlcst-affix-emoticon-modifier)
246+
— merge affix emoticons into the previous sentence
247+
* [`nlcst-emoji-modifier`](https://github.com/syntax-tree/nlcst-emoji-modifier)
248+
— support emoji
249+
* [`nlcst-emoticon-modifier`](https://github.com/syntax-tree/nlcst-emoticon-modifier)
250+
— support emoticons
251+
* [`nlcst-is-literal`](https://github.com/syntax-tree/nlcst-is-literal)
252+
— check whether a node is meant literally
253+
* [`nlcst-normalize`](https://github.com/syntax-tree/nlcst-normalize)
254+
— normalize a word for easier comparison
255+
* [`nlcst-search`](https://github.com/syntax-tree/nlcst-search)
256+
— search for patterns
257+
* [`nlcst-to-string`](https://github.com/syntax-tree/nlcst-to-string)
258+
— serialize a node
259+
* [`nlcst-test`](https://github.com/syntax-tree/nlcst-test)
260+
— validate a node
261+
* [`mdast-util-to-nlcst`](https://github.com/syntax-tree/mdast-util-to-nlcst)
262+
— transform mdast to nlcst
263+
* [`hast-util-to-nlcst`](https://github.com/syntax-tree/hast-util-to-nlcst)
264+
— transform hast to nlcst
265265

266266
## Related
267267

268-
* [mdast](https://github.com/syntax-tree/mdast)
269-
— Markdown Abstract Syntax Tree format
270-
* [hast](https://github.com/syntax-tree/hast)
271-
— Hypertext Abstract Syntax Tree format
272-
* [xast](https://github.com/syntax-tree/xast)
273-
— Extensible Abstract Syntax Tree
268+
* [mdast](https://github.com/syntax-tree/mdast)
269+
— Markdown Abstract Syntax Tree format
270+
* [hast](https://github.com/syntax-tree/hast)
271+
— Hypertext Abstract Syntax Tree format
272+
* [xast](https://github.com/syntax-tree/xast)
273+
— Extensible Abstract Syntax Tree
274274

275275
## References
276276

277-
* **unist**:
278-
[Universal Syntax Tree][unist].
279-
T. Wormer; et al.
280-
* **JavaScript**:
281-
[ECMAScript Language Specification][javascript].
282-
Ecma International.
283-
* **Web IDL**:
284-
[Web IDL][webidl],
285-
C. McCormack.
286-
W3C.
277+
* **unist**:
278+
[Universal Syntax Tree][unist].
279+
T. Wormer; et al.
280+
* **JavaScript**:
281+
[ECMAScript Language Specification][javascript].
282+
Ecma International.
283+
* **Web IDL**:
284+
[Web IDL][webidl],
285+
C. McCormack.
286+
W3C.
287287

288288
## Contribute
289289

0 commit comments

Comments
 (0)