Fix format errors from PR

This commit is contained in:
Matt Bierner 2021-08-05 14:55:55 -07:00
parent 4a69c3dda7
commit affc733e4e
No known key found for this signature in database
GPG key ID: 099C331567E11888
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 });
});
}

View file

@ -24,7 +24,7 @@ export function activate(context: vscode.ExtensionContext) {
extendMarkdownIt(md: any) {
if (isEnabled()) {
const katex = require('@iktakahiro/markdown-it-katex');
return md.use(katex, {'globalGroup': true});
return md.use(katex, { globalGroup: true });
}
return md;
}