Quote:
Originally Posted by ayjay3
In search and replace you can do so with normal text. I want to be able to add a carriage return to the 'replace' bit. How do I do that?
|
CR technically is not a needed part of (x)HTML
Tidy will
Pretty up your source on saving
Code:
<p>Paragraph 1</p><p>Paragraph 2</p>
Will tidy to:
Code:
<p>Paragraph 1</p>
<p>Paragraph 2</p>
The only time you would use CR is inside a <pre> tag.
All the other times: use <p>, <div> pairs or a <br />
BTW either example should render the same in the BOOK viewer