aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/app.js b/app.js
index 1080a20..ed12659 100644
--- a/app.js
+++ b/app.js
@@ -15,7 +15,6 @@ const PLUGIN_NAME = 'remark-mermaid-simple';
function visitCodeBlock(ast, vFile) {
return visit(ast, 'code', (node, index, parent) => {
const { lang, value, position } = node;
- const destinationDir = getDestinationDir(vFile);
// If this codeblock is not mermaid, bail.
if (lang !== 'mermaid') {