You need four "replace all"s in total:
Quote:
Originally Posted by phossler
1. Put <p> tags around the blocks of text that don't have any? I can delete the <br/>'s
|
Two steps:
(1) Wrap the body in <p>...</p>
Find: <body>(.*?)</body>
Replace: <body>\n<p>\1</p>\n</body>
(2) Replace all the <br/>s
Find: <br/>
Replace: </p>\n<p>
Quote:
Originally Posted by phossler
2. Put <p> tags around the blocks of text inside <blockquotes>'s that don't have any? I can delete the <blockquote>'s manually if I need to
|
Find: <blockquote>(.*?)</blockquote>
Replace: <blockquote>\n<p>\1</p>\n</blockquote>
Or, if you just want plain paras instead of blockquotes,
Replace: <p>\1</p>
Quote:
Originally Posted by phossler
3. Remove the spaces that are outside <p>'s?
|
Find: </p>\s*<p>
Replace: </p>\n<p>