Skip to content

Commit

Permalink
fix: unescape unicode (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Feb 25, 2024
1 parent 650890a commit 972989d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/names/show.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<x-guest-layout>
<x-slot:jsonLdSchema>
<script type="application/ld+json">
{!! json_encode($jsonLdSchema, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) !!}
{!! json_encode($jsonLdSchema, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) !!}
</script>
</x-slot>

Expand Down

0 comments on commit 972989d

Please sign in to comment.