I want to remove new lines from some html (with php) except in <pre> tags where whitespace is obviously important.
|
|
|||||
|
|
|
If the html is well formed, you can rely on the fact that Note that most html isn't well formed, so this approach may have some limits to where you can use it. |
|||
|
|
|
|
Split the content up. This is easily done with...
Just be careful, because the $blocks elements won't contain the pre opening and closing tags. I feel that assume the HTML is valid is acceptable, and therefore you can expect the pre-blocks to be every other element in the array (1, 3, 5, ...). Easily tested with Example "complete" script (modify as you need to)...
|
|||
|
|
