Quote:
Originally Posted by Sharlene
Hey guys,
I couldn't find an answer to my question in the forums, so I figured i'd ask directly.
I have an epub that i need to reformat.
A like like this:
<p>“Sorry.”</p>
Needs to be changed to this:
<p>
“Sorry.”
</p>
I have to change all of the instances of this in my document, but i'm not sure how to add a new line break.
I typed in find >& and replace it with >\n& but that clearly doesn't work.
Any and all help is appreciated. Cheers.
|
There is no difference to the Rendering engine between the 2 versions.
If your intent was to add newlines to the ouput:
Code:
<p><br /> “Sorry.”<br /></p>