Skip to content

Commit ed193ad

Browse files
addaleaxMyles Borins
authored and
Myles Borins
committed
tools: fix tools/doc/addon-verify.js regression
Introduced in commit 3f69ea5 ("tools: update marked dependency"), it stopped the embedded addons in the documentation from getting built. PR-URL: #6652 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent ea20796 commit ed193ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/doc/addon-verify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const verifyDir = path.resolve(rootDir, 'test', 'addons');
1010

1111
const contents = fs.readFileSync(doc).toString();
1212

13-
const tokens = marked.lexer(contents, {});
13+
const tokens = marked.lexer(contents);
1414
let files = null;
1515
let id = 0;
1616

0 commit comments

Comments
 (0)