mewebstudio / Purifier

HTMLPurifier for Laravel 5/6/7/8/9/10/11
MIT License
1.89k stars 230 forks source link

img , p in view not working. #162

Open magic-thomas opened 2 years ago

magic-thomas commented 2 years ago

in blade view , I did

<div>
{!! clean( nl2br( e( $post->content ))) !!}
 </div>

in my view page

I see this result as html source.

<p><img alt="1.jpg this is image" data-file-srl="12345" src="https://image.example.com/1.jpg" title="" /></p>

It does not show image.

I didn't change anything in config file.

How can I display image and translate P tag to line feed ?