Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
roundtripMarkdown(text) {
// Roundtrip the grammar through the Commonmark parser
const commonMarkTransformer = new CommonMarkTransformer({ noIndex: true });
const concertoAst = commonMarkTransformer.fromMarkdown(text);
return commonMarkTransformer.toMarkdown(concertoAst);
}