Skip to content

Commit

Permalink
Merge pull request #23 from lara-zeus/fix-blade
Browse files Browse the repository at this point in the history
fix blade files
  • Loading branch information
atmonshi authored Oct 5, 2024
2 parents 600dc56 + 3a3f9dd commit 4636f58
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 4636f58

Please sign in to comment.