How to restore broken lines in links in my PHP editor?
What happens is the broken lines in links do not show correctly in my markdown editor. For instance the editor will not render in this instance:
Code:
<a href="http://somedomain.com" rel="nofollow">
<img src="http://somedomain.com/images/someimage.png"
border="0"></a><br>
I need it to be on the same line as the rest of the link like this:
Code:
<a href="http://somedomain.com" rel="nofollow">
<img src="http://somedomain.com/images/someimage.png" border="0"></a><br>
Which php command can accomplish this?
Thanks!