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.
2 parents 324d0d7 + 0c6531b commit 787cdcdCopy full SHA for 787cdcd
src/ext/MarkdownTransformer.ts
@@ -1814,7 +1814,9 @@ export class MarkdownTransformer {
1814
return;
1815
}
1816
1817
- output.push({ content: vfile.toString(), componentOutput: componentOutput });
+ // cleanup markup for unordered lists: "* " -> "- "
1818
+ let fileContent = vfile.toString().split("* ").join("- ").split("* ").join("- ");
1819
+ output.push({ content: fileContent, componentOutput: componentOutput });
1820
1821
if (iteration == runFor.length - 1) {
1822
callback(null, output);
0 commit comments