Browse Source

add Log::info($html);

visuddhinanda 2 years ago
parent
commit
dbb9721df4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Http/Api/MdRender.php

+ 1 - 0
app/Http/Api/MdRender.php

@@ -438,6 +438,7 @@ class MdRender{
         $markdown = str_replace(['<param','</param>'],['<span','</span>'],$markdown);
         $markdown = str_replace(['<param','</param>'],['<span','</span>'],$markdown);
         $Parsedown = new \Parsedown();
         $Parsedown = new \Parsedown();
         $html = $Parsedown->text($markdown);
         $html = $Parsedown->text($markdown);
+        Log::info($html);
         $html = MdRender::fixHtml($html);
         $html = MdRender::fixHtml($html);
 
 
         $html = str_replace('<hr>','<hr />',$html);
         $html = str_replace('<hr>','<hr />',$html);