@@ -12,7 +12,7 @@ Extension for [`mdast-util-from-markdown`][from-markdown] and/or
1212[ ` mdast-util-to-markdown ` ] [ to-markdown ] to support GitHub flavored markdown
1313autolink literals in ** [ mdast] [ ] ** .
1414When parsing (` from-markdown ` ), must be combined with
15- [ ` micromark-extension-gfm-autolink-literal ` ] [ syntax ] .
15+ [ ` micromark-extension-gfm-autolink-literal ` ] [ extension ] .
1616
1717You probably shouldn’t use this package directly, but instead use ` remark-gfm `
1818with ** [ remark] [ ] ** .
@@ -32,13 +32,13 @@ Say our script, `example.js`, looks as follows:
3232``` js
3333var fromMarkdown = require (' mdast-util-from-markdown' )
3434var toMarkdown = require (' mdast-util-to-markdown' )
35- var autolinkLiteralSyntax = require (' micromark-extension-gfm-autolink-literal' )
35+ var syntax = require (' micromark-extension-gfm-autolink-literal' )
3636var autolinkLiteral = require (' mdast-util-gfm-autolink-literal' )
3737
3838var doc = ' www.example.com, https://example.com, and contact@example.com.'
3939
4040var tree = fromMarkdown (doc, {
41- extensions: [autolinkLiteralSyntax ],
41+ extensions: [syntax ],
4242 mdastExtensions: [autolinkLiteral .fromMarkdown ]
4343})
4444
@@ -112,7 +112,7 @@ for [`mdast-util-from-markdown`][from-markdown] and
112112 — remark plugin to support GFM
113113* [ ` micromark/micromark ` ] [ micromark ]
114114 — the smallest commonmark-compliant markdown parser that exists
115- * [ ` micromark/micromark-extension-gfm-autolink-literal ` ] [ syntax ]
115+ * [ ` micromark/micromark-extension-gfm-autolink-literal ` ] [ extension ]
116116 — micromark extension to parse GFM autolink literals
117117* [ ` syntax-tree/mdast-util-from-markdown ` ] [ from-markdown ]
118118 — mdast parser using ` micromark ` to create mdast from markdown
@@ -183,4 +183,4 @@ abide by its terms.
183183
184184[ micromark ] : https://github.com/micromark/micromark
185185
186- [ syntax ] : https://github.com/micromark/micromark-extension-gfm-autolink-literal
186+ [ extension ] : https://github.com/micromark/micromark-extension-gfm-autolink-literal
0 commit comments