From 537a7cf03d6ee86465f8aca761653606741d3658 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 9 Jan 2020 13:34:37 +0000 Subject: composer updates --- vendor/league/html-to-markdown/CHANGELOG.md | 9 +++++++-- vendor/league/html-to-markdown/src/Converter/TextConverter.php | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'vendor/league') diff --git a/vendor/league/html-to-markdown/CHANGELOG.md b/vendor/league/html-to-markdown/CHANGELOG.md index ded540682..9ce8e8b2d 100644 --- a/vendor/league/html-to-markdown/CHANGELOG.md +++ b/vendor/league/html-to-markdown/CHANGELOG.md @@ -4,8 +4,12 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip ## [Unreleased][unreleased] +## [4.9.1] - 2019-12-27 +### Fixed + - Fixed issue with HTML entity escaping in text (#184) + ## [4.9.0] - 2019-11-02 -## Added +### Added - Added new option to preserve comments (#177, #179) ## [4.8.3] - 2019-10-31 @@ -259,7 +263,8 @@ not ideally set, so this releases fixes that. Moving forwards this should reduce ### Added - Initial release -[unreleased]: https://github.com/thephpleague/html-to-markdown/compare/4.9.0...master +[unreleased]: https://github.com/thephpleague/html-to-markdown/compare/4.9.1...master +[4.9.1]: https://github.com/thephpleague/html-to-markdown/compare/4.9.0...4.9.1 [4.9.0]: https://github.com/thephpleague/html-to-markdown/compare/4.8.3...4.9.0 [4.8.3]: https://github.com/thephpleague/html-to-markdown/compare/4.8.2...4.8.3 [4.8.2]: https://github.com/thephpleague/html-to-markdown/compare/4.8.1...4.8.2 diff --git a/vendor/league/html-to-markdown/src/Converter/TextConverter.php b/vendor/league/html-to-markdown/src/Converter/TextConverter.php index fcd466094..6236a1e9d 100644 --- a/vendor/league/html-to-markdown/src/Converter/TextConverter.php +++ b/vendor/league/html-to-markdown/src/Converter/TextConverter.php @@ -35,7 +35,7 @@ class TextConverter implements ConverterInterface } } - return $markdown; + return htmlspecialchars($markdown, ENT_NOQUOTES, 'UTF-8'); } /** -- cgit v1.2.3