Fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity
This commit is contained in:
parent
2651eae663
commit
184928204a
@ -296,6 +296,8 @@ function bb_to_markdown($Text, $options = []) {
|
|||||||
function html2markdown($html,$options = []) {
|
function html2markdown($html,$options = []) {
|
||||||
$markdown = '';
|
$markdown = '';
|
||||||
|
|
||||||
|
$html = htmlspecialchars($html);
|
||||||
|
|
||||||
$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