How to Remove extra linebreaks and spaces in Dreamweaver
Posted on August 31, 2012 Posted Under Tips-n-Tricks, XHTML Coding
0 comments
How to remove extra spaces While the document is open in Dreamweaver, press CTRL+F to load the Find & Replace dialog box. Do the search on the source code view. Check the box “Use regular expression” and uncheck any other boxes. Find: [\r\n]{2,} Replace: \n The hit “replace all” That’s it!