Fix format errors from PR

This commit is contained in:
Matt Bierner
2021-08-05 14:55:55 -07:00
parent 4a69c3dda7
commit affc733e4e
2 changed files with 2 additions and 2 deletions

View File

@@ -45,6 +45,6 @@ export async function activate(ctx: {
const katex = require('@iktakahiro/markdown-it-katex');
markdownItRenderer.extendMarkdownIt((md: markdownIt.MarkdownIt) => {
return md.use(katex, {'globalGroup': true});
return md.use(katex, { globalGroup: true });
});
}