Browse Source

BugFix CrowiRenderer

Yuki Takei 8 years ago
parent
commit
cdf51a9ac3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resource/js/util/CrowiRenderer.js

+ 1 - 1
resource/js/util/CrowiRenderer.js

@@ -151,7 +151,7 @@ export default class CrowiRenderer {
     let html = '';
 
     html = this.parseMarkdown(markdown, dom, rendererOptions.marked || {});
-    html = this.postProcess(html);
+    html = this.postProcess(html, dom);
 
     return html;
   }