Remove superfluous line breaks between HTML elements.


/ Published in: PHP
Save to your folder(s)

A regular expression for removing and (case insensitive) between HTML elements if there is no content between the HTML elements. It was written for fixing extra line spaces created in a WordPress visual editor after the content of the visual editor was returned from the PHP nl2br() method.


Copy this code and paste it in your HTML
  1. $output = preg_replace('/<(((?!br)[^>])*)>\r*\n*\s*(<br\s?\/?>)*\r*\n*\s*<(((?!br)[^>])*)>/i', '<$1><$4>', $output);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.