chore(v2): fix code style (revert previous changes)

This commit is contained in:
Alexey Pyltsyn 2020-04-05 17:38:12 +03:00
parent 1480a7eb80
commit 1f00d15c74
143 changed files with 457 additions and 458 deletions

View file

@ -109,7 +109,7 @@ class MarkdownRenderer {
// Allow client sites to register their own plugins
if (siteConfig.markdownPlugins) {
siteConfig.markdownPlugins.forEach(plugin => {
siteConfig.markdownPlugins.forEach((plugin) => {
md.use(plugin);
});
}
@ -128,4 +128,4 @@ class MarkdownRenderer {
const renderMarkdown = new MarkdownRenderer();
module.exports = source => renderMarkdown.toHtml(source);
module.exports = (source) => renderMarkdown.toHtml(source);