Skip to content

Commit 63b7e4e

Browse files
committed
Update dev-dependencies
1 parent 389cf42 commit 63b7e4e

File tree

2 files changed

+70
-70
lines changed

2 files changed

+70
-70
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"Titus Wormer <[email protected]> (wooorm.com)"
1212
],
1313
"devDependencies": {
14-
"remark-cli": "^11.0.0",
15-
"remark-preset-wooorm": "^9.0.0"
14+
"remark-cli": "^12.0.0",
15+
"remark-preset-wooorm": "^10.0.0"
1616
},
1717
"scripts": {
1818
"format": "remark . -qfo",

readme.md

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

1515
## Contents
1616

17-
* [Introduction](#introduction)
18-
* [Where this specification fits](#where-this-specification-fits)
19-
* [Scope](#scope)
20-
* [Types](#types)
21-
* [Nodes (abstract)](#nodes-abstract)
22-
* [`Literal`](#literal)
23-
* [`Parent`](#parent)
24-
* [Nodes](#nodes)
25-
* [`Cdata`](#cdata)
26-
* [`Comment`](#comment)
27-
* [`Doctype`](#doctype)
28-
* [`Element`](#element)
29-
* [`Instruction`](#instruction)
30-
* [`Root`](#root)
31-
* [`Text`](#text)
32-
* [Other types](#other-types)
33-
* [`Attributes`](#attributes)
34-
* [`AttributeName`](#attributename)
35-
* [`AttributeValue`](#attributevalue)
36-
* [Glossary](#glossary)
37-
* [List of utilities](#list-of-utilities)
38-
* [References](#references)
39-
* [Related](#related)
40-
* [Contribute](#contribute)
41-
* [Acknowledgments](#acknowledgments)
42-
* [License](#license)
17+
* [Introduction](#introduction)
18+
* [Where this specification fits](#where-this-specification-fits)
19+
* [Scope](#scope)
20+
* [Types](#types)
21+
* [Nodes (abstract)](#nodes-abstract)
22+
* [`Literal`](#literal)
23+
* [`Parent`](#parent)
24+
* [Nodes](#nodes)
25+
* [`Cdata`](#cdata)
26+
* [`Comment`](#comment)
27+
* [`Doctype`](#doctype)
28+
* [`Element`](#element)
29+
* [`Instruction`](#instruction)
30+
* [`Root`](#root)
31+
* [`Text`](#text)
32+
* [Other types](#other-types)
33+
* [`Attributes`](#attributes)
34+
* [`AttributeName`](#attributename)
35+
* [`AttributeValue`](#attributevalue)
36+
* [Glossary](#glossary)
37+
* [List of utilities](#list-of-utilities)
38+
* [References](#references)
39+
* [Related](#related)
40+
* [Contribute](#contribute)
41+
* [Acknowledgments](#acknowledgments)
42+
* [License](#license)
4343

4444
## Introduction
4545

@@ -400,54 +400,54 @@ See the [unist glossary][glossary].
400400

401401
See the [unist list of utilities][utilities] for more utilities.
402402

403-
* [`xastscript`](https://github.com/syntax-tree/xastscript)
404-
— create trees
405-
* [`xast-util-feed`](https://github.com/syntax-tree/xast-util-feed)
406-
— build feeds (RSS, Atom)
407-
* [`xast-util-from-xml`](https://github.com/syntax-tree/xast-util-from-xml)
408-
— parse from XML
409-
* [`xast-util-sitemap`](https://github.com/syntax-tree/xast-util-sitemap)
410-
— build `sitemap.xml`
411-
* [`xast-util-to-string`](https://github.com/syntax-tree/xast-util-to-string)
412-
— get the text value
413-
* [`xast-util-to-xml`](https://github.com/syntax-tree/xast-util-to-xml)
414-
— serialize to XML
415-
* [`hast-util-to-xast`](https://github.com/syntax-tree/hast-util-to-xast)
416-
— transform to xast
403+
* [`xastscript`](https://github.com/syntax-tree/xastscript)
404+
— create trees
405+
* [`xast-util-feed`](https://github.com/syntax-tree/xast-util-feed)
406+
— build feeds (RSS, Atom)
407+
* [`xast-util-from-xml`](https://github.com/syntax-tree/xast-util-from-xml)
408+
— parse from XML
409+
* [`xast-util-sitemap`](https://github.com/syntax-tree/xast-util-sitemap)
410+
— build `sitemap.xml`
411+
* [`xast-util-to-string`](https://github.com/syntax-tree/xast-util-to-string)
412+
— get the text value
413+
* [`xast-util-to-xml`](https://github.com/syntax-tree/xast-util-to-xml)
414+
— serialize to XML
415+
* [`hast-util-to-xast`](https://github.com/syntax-tree/hast-util-to-xast)
416+
— transform to xast
417417

418418
## References
419419

420-
* **JSON**
421-
[The JavaScript Object Notation (JSON) Data Interchange Format][json],
422-
T. Bray.
423-
IETF.
424-
* **JavaScript**:
425-
[ECMAScript Language Specification][javascript].
426-
Ecma International.
427-
* **unist**:
428-
[Universal Syntax Tree][unist].
429-
T. Wormer; et al.
430-
* **XML**:
431-
[Extensible Markup Language (XML) 1.0 (Fifth Edition)][xml]
432-
T. Bray; et al.
433-
W3C.
434-
* **XML-NAMES**:
435-
[Namespaces in XML 1.0 (Third Edition)][xml-names]
436-
T. Bray; et al.
437-
W3C.
438-
* **Web IDL**:
439-
[Web IDL][webidl],
440-
C. McCormack.
441-
W3C.
420+
* **JSON**
421+
[The JavaScript Object Notation (JSON) Data Interchange Format][json],
422+
T. Bray.
423+
IETF.
424+
* **JavaScript**:
425+
[ECMAScript Language Specification][javascript].
426+
Ecma International.
427+
* **unist**:
428+
[Universal Syntax Tree][unist].
429+
T. Wormer; et al.
430+
* **XML**:
431+
[Extensible Markup Language (XML) 1.0 (Fifth Edition)][xml]
432+
T. Bray; et al.
433+
W3C.
434+
* **XML-NAMES**:
435+
[Namespaces in XML 1.0 (Third Edition)][xml-names]
436+
T. Bray; et al.
437+
W3C.
438+
* **Web IDL**:
439+
[Web IDL][webidl],
440+
C. McCormack.
441+
W3C.
442442

443443
## Related
444444

445-
* [hast](https://github.com/syntax-tree/hast)
446-
— Hypertext Abstract Syntax Tree format
447-
* [mdast](https://github.com/syntax-tree/mdast)
448-
— Markdown Abstract Syntax Tree format
449-
* [nlcst](https://github.com/syntax-tree/nlcst)
450-
— Natural Language Concrete Syntax Tree format
445+
* [hast](https://github.com/syntax-tree/hast)
446+
— Hypertext Abstract Syntax Tree format
447+
* [mdast](https://github.com/syntax-tree/mdast)
448+
— Markdown Abstract Syntax Tree format
449+
* [nlcst](https://github.com/syntax-tree/nlcst)
450+
— Natural Language Concrete Syntax Tree format
451451

452452
## Contribute
453453

0 commit comments

Comments
 (0)