This is for those of us who code web sites by hand.
You should have a look at Zen Coding. It's a set of plugins/scripts for various text editors that let you create HTML and CSS using CSS-like syntax.
Example: entering div#main>ul>li*3 will output:
It's pretty neat and definitely helps speed up creating pages. Some of the Mac editors currently supported are BBEdit/TextWrangler, TextMate, Aptana, Coda, and Espresso. I created the BBEdit/TextWrangler scripts this past weekend. Fun little project. Smashing Magazine has a nice article on Zen Coding from the author of the script that explains the concept and usage more along with a video demo. If you hand code HTML at all, you should definitely take a look at this. Enjoy.
You should have a look at Zen Coding. It's a set of plugins/scripts for various text editors that let you create HTML and CSS using CSS-like syntax.
Example: entering div#main>ul>li*3 will output:
HTML:
<div id="main">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>