vote up 0 vote down star

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?

flag
I have nothing else to add here other than to say that I love the Space Moose icon! – Scottie May 15 at 13:47

2 Answers

vote up 0 vote down

Why not use replace with regular expressions? E.g. to get rid of all inline css styles you would just replace

 style=".*"

with nothing (empty string). Note the leading space.

link|flag
Quantors are greedy by default. – Gumbo May 15 at 13:51
Here at work I'm on Windows. I just tested on Notepad++. If TextMate does greedy matching by default, just use the non-greedy version: style=".*?" – AlexH May 15 at 13:56
Notepad++ has a very limited regular expression support. notepad-plus.sourceforge.net/uk/regExpList.php/… – Gumbo May 15 at 13:59
In contrast to that: TextMate’s regular expression support manual.macromates.com/en/regular_expressions/… – Gumbo May 15 at 14:01
vote up 2 vote down

Not that I'm aware of, but there's always the option of doing a Find/Replace for <span> (and </span>, obviously) and leaving the "Replace" field empty. Of course, this becomes a little more problematic if you've got spans with varying class/id attributes or what-have-you, then you're getting into RegExp territory.

That should at least give you a start, though. I'd be interested to hear what anyone else has to offer, though. Textmate is so customizable that I'm sure there's a better solution than what I've offered!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.