Browse Source

add Log::info($html);

visuddhinanda 3 năm trước cách đây
mục cha
commit
dbb9721df4
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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);
         $Parsedown = new \Parsedown();
         $html = $Parsedown->text($markdown);
+        Log::info($html);
         $html = MdRender::fixHtml($html);
 
         $html = str_replace('<hr>','<hr />',$html);