Update dependency: markdownlint-micromark to 0.1.6.

This commit is contained in:
David Anson 2023-06-26 21:00:11 -07:00
parent 1942b11fb5
commit 6f8c70877c
3 changed files with 3 additions and 3 deletions

View file

@ -1337,7 +1337,7 @@ function getMicromarkEvents(markdown) {
var refsDefined = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
// Customize options object to add useful extensions
options.extensions = options.extensions || [];
options.extensions.push(gfmAutolinkLiteral, gfmFootnote(), gfmTable);
options.extensions.push(gfmAutolinkLiteral(), gfmFootnote(), gfmTable());
// Use micromark to parse document into Events
var encoding = undefined;

View file

@ -33,7 +33,7 @@ function getMicromarkEvents(markdown, options = {}, refsDefined = true) {
// Customize options object to add useful extensions
options.extensions = options.extensions || [];
options.extensions.push(gfmAutolinkLiteral, gfmFootnote(), gfmTable);
options.extensions.push(gfmAutolinkLiteral(), gfmFootnote(), gfmTable());
// Use micromark to parse document into Events
const encoding = undefined;

View file

@ -65,7 +65,7 @@
},
"dependencies": {
"markdown-it": "13.0.1",
"markdownlint-micromark": "0.1.5"
"markdownlint-micromark": "0.1.6"
},
"devDependencies": {
"@babel/core": "7.22.5",