mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-13 09:07:29 +02:00
chore(v2): fix code style (revert previous changes)
This commit is contained in:
parent
1480a7eb80
commit
1f00d15c74
143 changed files with 457 additions and 458 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue