aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/markdown.php5
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('&lt;','&gt;','&amp;'),array('&_lt_;','&_gt_;','&_amp_;'),$Text);
+ // This might fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity
+ $Text = str_replace("&", "&amp;", $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);