We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b916773 commit bd95106Copy full SHA for bd95106
src/index.js
@@ -66,7 +66,7 @@ function createPlugin() {
66
const nodes = [];
67
visit(
68
markdownAST,
69
- ({ type }) => type === 'code' || inlineCode && type === 'inlineCode',
+ ({ type }) => type === 'code' || (inlineCode && type === 'inlineCode'),
70
node => {
71
nodes.push(node);
72
}
0 commit comments