2017-09-30 20 views
0

Laravel Markdownをインストールしましたが、HTMLコードを印刷しています。Markdown Laravel印刷用HTMLコード

<h2 style="font-family: DauphinPlain; line-height: 24px; 
color: rgb(0, 0, 0); margin: 0px 0px 10px; font-size: 24px; 
padding: 0px;">What is Lorem Ipsum? 

を印刷

私のモデル

use Illuminate\Database\Eloquent\Model; 
use Illuminate\Database\Eloquent\SoftDeletes; 
use GrahamCampbell\Markdown\Facades\Markdown; 
use Illuminate\Support\HtmlString; 


class Post extends Model 
{ 

    public function getContentHtmlAttribute($value) 
{ 

    return Markdown::convertToHtml(e($this->content)); 

} 
} 

私のブレードページ

{!! $post->content_html !!} 

約whata

+0

ありがとうあなたがhtml.thatに変換している理由は、 – iCoders

+0

の結果が同じである可能性があります:( –

+0

私はそれをインストールして一度チェックしてみましょう – iCoders

答えて

0
{!! html_entity_decode($post->content_html) !!} try this and i dont say its good one but still working –