diff --git a/CHANGELOG.md b/CHANGELOG.md index 60d24de..f8ba282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved image upload handling, using Laravel-native libraries - Improved link metadata retrieval, using Laravel-native libraries +### Fixed + +- Fixed HTML escaping on list and raw HTML fields. (#80 by @Harrk) + ## [3.0.5] ### Fixed diff --git a/resources/views/list.blade.php b/resources/views/list.blade.php index 23222dd..a0adfae 100644 --- a/resources/views/list.blade.php +++ b/resources/views/list.blade.php @@ -1,9 +1,9 @@
- {{ ($style == 'unordered') ? '' : '' !!}
diff --git a/resources/views/raw.blade.php b/resources/views/raw.blade.php index d6adaca..974f823 100644 --- a/resources/views/raw.blade.php +++ b/resources/views/raw.blade.php @@ -1 +1 @@ -{{ $html }} \ No newline at end of file +{!! $html !!}