[scribes-discussion] Zen Coding
Brought to you by:
mystilleef
|
From: Brutus <bru...@go...> - 2009-11-22 13:29:35
|
Hi all. Just want to call attention to "zen-coding", a snippet system for writing HTML code really fast, in a way we know from CSS. It goes like this: 1 div#content>h1+p And get's expanded to: 1 <div id="content"> 2 <h1></h1> 3 <p></p> 4 </div> There's a lot more to it. If your're interested, check out the nice article over at Smashing Magazine I just read: http://www.smashingmagazine.com/2009/11/21/zen-coding-a-new-way-to-write-html-code/ Just want to share, would be interesting to have support for this in scribes too. Zen Coding is hosted on Google code: http://code.google.com/p/zen-coding/ |