hdoc-tools 0.41.0 → 0.41.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hdoc-build.js +1 -1
- package/hdoc-serve.js +1 -1
- package/package.json +1 -1
package/hdoc-build.js
CHANGED
@@ -531,7 +531,7 @@
|
|
531
531
|
|
532
532
|
fs.writeFileSync(tmpInput.name, str);
|
533
533
|
|
534
|
-
const cmd = `${__dirname}/node_modules/.bin/mmdc -i "${tmpInput.name}" -o "${tmpOutput.name}" --quiet --backgroundColor transparent
|
534
|
+
const cmd = `${__dirname}/node_modules/.bin/mmdc -i "${tmpInput.name}" -o "${tmpOutput.name}" --quiet --backgroundColor transparent`;
|
535
535
|
console.log(`Generating Inline Mermaid SVG found in: ${file_path.relativePath}`);
|
536
536
|
execSync(cmd);
|
537
537
|
|
package/hdoc-serve.js
CHANGED
@@ -143,7 +143,7 @@
|
|
143
143
|
|
144
144
|
fs.writeFileSync(tmpInput.name, str);
|
145
145
|
|
146
|
-
const cmd = `${__dirname}/node_modules/.bin/mmdc -i "${tmpInput.name}" -o "${tmpOutput.name}" --quiet --backgroundColor transparent
|
146
|
+
const cmd = `${__dirname}/node_modules/.bin/mmdc -i "${tmpInput.name}" -o "${tmpOutput.name}" --quiet --backgroundColor transparent`;
|
147
147
|
console.log(`Generating Inline Mermaid SVG found in: ${file_path}`);
|
148
148
|
execSync(cmd);
|
149
149
|
|