vote up 1 vote down star

What's the best free IDE/Editor for working with CSS and HTML which has thousands of divs and its really hard to see which div is connected to what? Such as if it could highlight the corresponding divs, or show a +/- sign next to them to expand/collapse them?

flag

3  
"thousands of divs" scares me... – scunliffe Jun 18 at 18:13
3  
Tableless design run amuck! Must've been done by some fancy shmancy latte sipping web designer – Jason Watts Jun 18 at 18:16
1  
Yea, don't ask me man. Its got a div for fricking everything, and such well described css class names as 'div1' 'div2' 'div4-partb' etc. – Click Upvote Jun 18 at 18:18
2  
1st guy: "Thousands of divs, you really did that?" 2nd guy: "Yeah, but it's W3C Compliant!" – JoeCool Jun 18 at 18:25
2  
You just know this was a designer who resented being told to fix his table-based page and he was like, "Oh, you want divs? I'LL GIVE YOU DIVS!" – Chuck Jun 18 at 18:40
show 2 more comments

9 Answers

vote up 5 vote down check

Notepad++ or Eclipse can do the highlighting/collapsing you mentioned. Firebug can show you which ones are which in a more interactive manner. A quick run through the W3C validator would ensure there aren't any mismatched tags in it, too. Couldn't hurt.

Overall though, that's just an "ouch" situation. If you have any connection to the people that created that mess please encourage them to clean it up ASAP. It'll make everyone happier and their page load faster.

link|flag
vote up 0 vote down

I would suggest the Eclipse IDE with the Aptana Studio plugin. Nice highlighting for matched tags, tag insight, etc.

link|flag
Also if you're using Eclipse you can, select all, right click and select source->correct indentation. It will probably help a lot to see the correct indentation. – Cameron Jun 18 at 18:17
vote up 1 vote down

vim with "%" when highlighting a <div> or </div> does easy matching. There is probably a plugin for code folding as well. It is also fast, which is helpful for monstrous text files.

link|flag
vote up 7 vote down

I like to use firebug in firefox for identifying issues such as the one you are describing. Then I can see clearly what the browser is rendering and click directly to the code that is causing the rendering. A must have (with so many other features).

I agree with @scunliffe though : "thousands of divs" scares me!

link|flag
vote up 1 vote down

Just download a cracked copy of Dreamweaver CS4 like the rest of us.

@Cameron - ctrl + Shift + f

link|flag
3  
But Dreamweaver's probably what got him in this bind in the first place!!! – jdangel Jun 18 at 18:25
True, so very true. – amischiefr Jun 18 at 18:35
no, its hand written code i believe – Click Upvote Jun 18 at 18:41
vote up 0 vote down

A lot of free IDEs will do that. I know for a fact that Komodo Edit does exactly what you describe right out of the box.

link|flag
vote up 0 vote down

NuSphere PhpEd has code folding for HTML.

link|flag
vote up 0 vote down

oXygen's xhtml support does this sort of thing. Specifically, it provides code folding and also parses the xhtml code to provide features like highlighting matching divs. You can also run ad-hoc XPath statements against your source as a form of regexp grep better suited to XML documents. I've also found that their code-completion is very smart.

link|flag
vote up 0 vote down

Apart of collapsing the div, you may find interes in a beautify tool like this shareware, open-source C program named "Tidy" which lives at the venerable W3C, at http://www.w3.org/People/Raggett/tidy/

link|flag

Your Answer

Get an OpenID
or

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