I have several pages in a Word file that I need to format into HTML. Does anyone know of any programs that could add <br> tags in all of the page breaks of my Word files? I'm not looking for some WYSIWYG editor that adds laods of uneccessary text, I just need something "clean" that adds <br> whenever there's a page break. Thanks,
You can do it in Word if you go to Find And Replace (CTRL+H), click More and then Special and then Manual Page Break. Find ^m and replace with <br/>. I think that's what you're asking for...
For some reason this doesn't work for me - it says 0 changes were made. Anyway, I've decided to do it manually. Thanks.
Copy-Paste it into Dreamweavers "Visual" pane and it should format it correctly with breaks. If not you can write a quick macro in VBS in Word to replace vbcrlf with "<br />" or chr(13) and chr(10) - is what vbcrlf means