Is there a way to strip HTML tags selectively in TextMate – you can easily do this in Dreamweaver.
TextMate allows you to strip all HTML tags but I would like to get rid of only, let’s say all the <span>‘s and <font>‘s.
On a similar topic, is there a way to get rid of all the inline css styles?
Why not use replace with regular expressions? E.g. to get rid of all inline css styles you would just replace
with nothing (empty string). Note the leading space.