tags:

views:

394

answers:

7

hi

i was wondering if their is a program out there that checks to see if i have a beggining an end tag for each html markup item. i use dreamweaver cs3 and when something is wrong with the markup a tag changes color but its not alway acurate. i was wondering if there was someway i can have the beginning and end tags put into a tree view rather than having to open and close each tag in tree view in dreamweaver.

thanks

so something that is displayed like this.

+<div id="abc">
| some html
| some html
| some html
| some html
+</div>

+<div id="def">
| some html
| some html
| some html
| some html
+</div>
+3  A: 

Try using Eclipse with the Aptana plugin, it's got pretty solid code-highlighting.

Somewhat irrelevantly, if you're doing W3C validation, use the FF web developer plugin and use ctrl+shift+a as a shortcut to validate local code.

Mike Robinson
A: 

Well I dont know if this is what you want but I personally use this "HTML Validator" Firefox extension. https://addons.mozilla.org/en-US/firefox/addon/249

This validates your code for start and end tags and much more. It pretty much checks that it's valid according to W3C standards.

If what you want is HTML syntax highlighting NetBeans has a pretty good one and supports many server side programming languages.

lalala2007
problem is everytime i want to validate i have to upload the entire website. im doing this on localhost
A: 

I'm not sure what you are looking for. Using the Firebug Extension for Firefox will show you a tree view of the current page.

If you are looking for a text editor with syntax highlighting, there is Notepad++ for windows. For linux, gedit has syntax highlighting. Of course vim and emacs is available for everything.

Buddy
A: 

As Mike mentioned Eclipse would be good to work on. Still i prefer "VI or VIM" Editor under linux. Indenting and formatting feature would be really useful.

If you would like to install the W3c Validator on your local machine then try installing Xampp Package(as it is bundles with Apache,Php,Mysql) then install W3c validator. It will work in any operating systems.

Webrsk
A: 

I use HAML and now I will never have to close a tag again. Also besides the Firefox extensions, you have the SafariTidy plugin for Safari which will check all your tags.

gdelfino
A: 

HTML Tidy?

You can also install W3C's validator on your system.

Adam Jaskiewicz
A: 

You can find Tidy is helpful for you. Or use online validator from w3c.

kingoleg