Fix PHP Warning: DOMDocument::loadHTML(): htmlParseEntityRef: no name in Entity

This commit is contained in:
Mario Vavti 2018-09-12 11:14:49 +02:00
parent 2651eae663
commit 184928204a

View File

@ -295,6 +295,8 @@ function bb_to_markdown($Text, $options = []) {
*/
function html2markdown($html,$options = []) {
$markdown = '';
$html = htmlspecialchars($html);
$environment = Environment::createDefaultEnvironment($options);
$environment->addConverter(new TableConverter());