diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-22 14:18:37 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-22 14:18:37 +0200 |
commit | 822bbd9ad5e84f556ca6e6580d3a5326c301af8f (patch) | |
tree | 973d1df40181f873ed7b9ea2f3ae75b58be2541c /include/markdown.php | |
parent | c873f7e70261e918b83689971b73080fe43815aa (diff) | |
download | volse-hubzilla-822bbd9ad5e84f556ca6e6580d3a5326c301af8f.tar.gz volse-hubzilla-822bbd9ad5e84f556ca6e6580d3a5326c301af8f.tar.bz2 volse-hubzilla-822bbd9ad5e84f556ca6e6580d3a5326c301af8f.zip |
another try to fix Fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity
Diffstat (limited to 'include/markdown.php')
-rw-r--r-- | include/markdown.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/markdown.php b/include/markdown.php index e5f5b9369..6af055366 100644 --- a/include/markdown.php +++ b/include/markdown.php @@ -251,6 +251,9 @@ function bb_to_markdown($Text, $options = []) { // Markdownify does not preserve previously escaped html entities such as <> and &. //$Text = str_replace(array('<','>','&'),array('&_lt_;','&_gt_;','&_amp_;'),$Text); + // This might fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity + $Text = str_replace("&", "&", $Text); + // Now convert HTML to Markdown $Text = html2markdown($Text); @@ -295,7 +298,7 @@ function bb_to_markdown($Text, $options = []) { */ function html2markdown($html,$options = []) { $markdown = ''; - + $environment = Environment::createDefaultEnvironment($options); $environment->addConverter(new TableConverter()); $converter = new HtmlConverter($environment); |