Skip to content

Commit 3bea623

Browse files
committed
Add missing semi
1 parent 768ec1a commit 3bea623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/convert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export default (source, config) => {
139139
.reduce(
140140
(markdownRenderer, pluginDefinition) => {
141141
if (!Array.isArray(pluginDefinition)) {
142-
pluginDefinition = [pluginDefinition]
142+
pluginDefinition = [pluginDefinition];
143143
}
144144
if (typeof pluginDefinition[0] === 'string') {
145145
pluginDefinition[0] = require(pluginDefinition[0]);

0 commit comments

Comments
 (0)