another try to fix Fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity
This commit is contained in:
parent
c873f7e702
commit
822bbd9ad5
@ -251,6 +251,9 @@ function bb_to_markdown($Text, $options = []) {
|
|||||||
// Markdownify does not preserve previously escaped html entities such as <> and &.
|
// Markdownify does not preserve previously escaped html entities such as <> and &.
|
||||||
//$Text = str_replace(array('<','>','&'),array('&_lt_;','&_gt_;','&_amp_;'),$Text);
|
//$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
|
// Now convert HTML to Markdown
|
||||||
|
|
||||||
$Text = html2markdown($Text);
|
$Text = html2markdown($Text);
|
||||||
@ -295,7 +298,7 @@ function bb_to_markdown($Text, $options = []) {
|
|||||||
*/
|
*/
|
||||||
function html2markdown($html,$options = []) {
|
function html2markdown($html,$options = []) {
|
||||||
$markdown = '';
|
$markdown = '';
|
||||||
|
|
||||||
$environment = Environment::createDefaultEnvironment($options);
|
$environment = Environment::createDefaultEnvironment($options);
|
||||||
$environment->addConverter(new TableConverter());
|
$environment->addConverter(new TableConverter());
|
||||||
$converter = new HtmlConverter($environment);
|
$converter = new HtmlConverter($environment);
|
||||||
|
Reference in New Issue
Block a user