Issue #900956 by quicksketch, sun: update autop filter to include missing block level tags.
parent
99d98c1927
commit
e5313544bc
|
@ -1688,7 +1688,7 @@ function _filter_htmlcorrector($text) {
|
|||
*/
|
||||
function _filter_autop($text) {
|
||||
// All block level tags
|
||||
$block = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|p|h[1-6]|hr|article|aside|details|figcaption|figure|footer|header|hgroup|menu|nav|section|summary)';
|
||||
$block = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|option|form|map|area|blockquote|address|math|input|p|h[1-6]|fieldset|legend|hr|article|aside|details|figcaption|figure|footer|header|hgroup|menu|nav|section|summary)';
|
||||
|
||||
// Split at opening and closing PRE, SCRIPT, STYLE, OBJECT, IFRAME tags
|
||||
// and comments. We don't apply any processing to the contents of these tags
|
||||
|
@ -1740,7 +1740,7 @@ function _filter_autop($text) {
|
|||
$chunk = preg_replace('!(</?' . $block . '[^>]*>)\s*</p>!', "$1", $chunk);
|
||||
$chunk = preg_replace('|(?<!<br />)\s*\n|', "<br />\n", $chunk); // make line breaks
|
||||
$chunk = preg_replace('!(</?' . $block . '[^>]*>)\s*<br />!', "$1", $chunk);
|
||||
$chunk = preg_replace('!<br />(\s*</?(?:p|li|div|th|pre|td|ul|ol)>)!', '$1', $chunk);
|
||||
$chunk = preg_replace('!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)>)!', '$1', $chunk);
|
||||
$chunk = preg_replace('/&([^#])(?![A-Za-z0-9]{1,8};)/', '&$1', $chunk);
|
||||
}
|
||||
$output .= $chunk;
|
||||
|
|
Loading…
Reference in New Issue