Ticket #4605: blockelements.patch
| File blockelements.patch, 0.9 kB (added by hakre, 1 year ago) |
|---|
-
wp-includes/formatting.php
old new 55 55 $pee = $pee . "\n"; // just to make things a little easier, pad the end 56 56 $pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee); 57 57 // Space things out a little 58 $allblocks = '(?: table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|map|area|blockquote|address|math|style|input|p|h[1-6]|hr)';58 $allblocks = '(?:address|area|blockquote|caption|colgroup|dd|div|dl|dt|form|h[1-6]|li|map|math|ol|p|pre|table|tbody|td|tfoot|th|thead|tr|ul)'; 59 59 $pee = preg_replace('!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee); 60 60 $pee = preg_replace('!(</' . $allblocks . '>)!', "$1\n\n", $pee); 61 61 $pee = str_replace(array("\r\n", "\r"), "\n", $pee); // cross-platform newlines
