Skip to content

Commit

Permalink
fix blade files
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Oct 5, 2024
1 parent 600dc56 commit 3a3f9dd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div class="py-4">
{!! $data['content'] !!}
<div class="max-w-none p-4 prose lg:prose-xl prose-primary dark:prose-invert">
{!!
(new \Illuminate\Support\HtmlString(
str(strip_tags($data['content']))
->markdown()
))
->toHtml()
!!}
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div class="py-4">
{!! $data['content'] !!}
<div class="max-w-none p-4 prose lg:prose-xl prose-primary dark:prose-invert">
{!!
(new \Illuminate\Support\HtmlString(
str(strip_tags($data['content']))
->markdown()
))
->toHtml()
!!}
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<div class="py-4">
{!! $data['content'] !!}
<div class="max-w-none p-4 prose lg:prose-xl prose-primary dark:prose-invert">
{!!
(new \Illuminate\Support\HtmlString(
str(strip_tags($data['content']))
->markdown()
))
->toHtml()
!!}
</div>

0 comments on commit 3a3f9dd

Please sign in to comment.