html-to-markdown adds a backslash infront of a hash after each new line - manualy remove those

This commit is contained in:
Mario Vavti 2018-08-29 16:16:17 +02:00
parent 42093aedcf
commit d98ed68749

View File

@ -255,6 +255,9 @@ function bb_to_markdown($Text, $options = []) {
$Text = html2markdown($Text);
//html2markdown adds backslashes infront of hashes after a new line. remove them
$Text = str_replace("\n\#", "\n#", $Text);
// It also adds backslashes to our attempt at getting around the html entity preservation for some weird reason.
//$Text = str_replace(array('&\\_lt\\_;','&\\_gt\\_;','&\\_amp\\_;'),array('<','>','&'),$Text);
@ -374,4 +377,4 @@ class TableConverter implements ConverterInterface
{
return array('table', 'tr', 'thead', 'td', 'tbody');
}
}
}