Zen Coding: A Speedy Way To Write HTML/CSS Code
In this post we present a new speedy way of writing HTML code using CSS-like selector syntax — a handy set of tools for high-speed HTML and CSS coding. It was developed by our author Sergey Chikuyonok and released for Smashing Magazine and its readers.
How much time do you spend writing HTML code: all of those tags, attributes, quotes, braces, etc. You have it easier if your editor of choice has code-completion capabilities, but you still do a lot of typing.
We had the same problem in JavaScript world when we wanted to access a specific element on a Web page. We had to write a lot of code, which became really hard to support and reuse. And then JavaScript frameworks came along, which introduced CSS selector engines. Now, you can use simple CSS expressions to access DOM elements, which is pretty cool.
But what if you could use CSS selectors not just to style and access elements, but to generate code? For example, what if you could write this…
div#content>h1+p
…and see this as the output?
<div id="content"> <h1></h1> <p></p> </div>
Today, we’ll introduce you to Zen Coding, a set of tools for high-speed HTML and CSS coding. Originally proposed by Vadim Makeev (article in Russian) back in April 2009, it has been developed by yours truly (i.e. me) for the last few months and has finally reached a mature state. Zen Coding consists of two core components: an abbreviation expander (abbreviations are CSS-like selectors) and context-independent HTML-pair tag matcher. Watch this demo video to see what they can do for you.
If you’d like to skip the detailed instructions and usage guide, please take a look at the demo and download your plugin right away:
Demo
- Demo (use Ctrl + , to expand an abbreviation, requires JavaScript)
Downloads (Full Support)
- Aptana (cross-platform);
- Coda, via TEA for Coda (Mac);
- Espresso, via TEA for Espresso (Mac);
Downloads (Partial Support, “Expand Abbreviation” Only)
- TextMate (Mac, and can be used with E-text editor for Windows);
- TopStyle;
- Sublime Text;
- GEdit;
- editArea online editor;
Now, let’s see how these tools work.
Expand Abbreviation
The Expand Abbreviation function transforms CSS-like selectors into XHTML code. The term “abbreviation” might be a little confusing. Why not just call it a “CSS selector”? Well, the first reason is semantic: “selector” means to select something, but here we’re actually generating something, writing a shorter representation of longer code. Secondly, it supports only a small subset of real CSS selector syntax, in addition to introducing some new operators.
Here is a list of supported properties and operators:
- E
Element name (div,p); - E#id
Element with identifier (div#content,p#intro,span#error); - E.class
Element with classes (div.header,p.error.critial). You can combine classes and IDs, too:div#content.column.width; - E>N
Child element (div>p,div#footer>p>span); - E+N
Sibling element (h1+p,div#header+div#content+div#footer); - E*N
Element multiplication (ul#nav>li*5>a); - E$*N
Item numbering (ul#nav>li.item-$*5);
As you can see, you already know how to use Zen Coding: just write a simple CSS-like selector (oh, “abbreviation”—sorry), like so…
div#header>img.logo+ul#nav>li*4>a
…and then call the Expand Abbreviation action.
There are two custom operators: element multiplication and item numbering. If you want to generate, for example, five <li> elements, you would simply write li*5. It would repeat all descendant elements as well. If you wanted four <li> elements, with an <a> in each, you would simply write li*4>a, which would generate the following output:
<li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li>
The last one–item numbering is used when you want to mark a repeated element with its index. Suppose you want to generate three <div> elements with item1, item2 and item3 classes. You would write this abbreviation, div.item$*3:
<div class="item1"></div> <div class="item2"></div> <div class="item3"></div>
Just add a dollar sign wherever in the class or ID property that you want the index to appear, and as many an you want. So, this…
div#i$-test.class$$$*5
would be transformed into:
<div id="i1-test" class="class111"></div> <div id="i2-test" class="class222"></div> <div id="i3-test" class="class333"></div> <div id="i4-test" class="class444"></div> <div id="i5-test" class="class555"></div>
You’ll see that when you write the a abbreviation, the output is <a href=""></a>. Or, if you write img, the output is <img src="" alt="" />.
How does Zen Coding know when it should add default attributes to the generated tag or skip the closing tag? A special file, called zen_settings.js describes the outputted elements. It’s a simple JSON file that describes the abbreviations for each language (yes, you can define abbreviations for different syntaxes, such as HTML, XSL, CSS, etc.). The common language abbreviations definition looks like this:
'html': {
'snippets': {
'cc:ie6': '<!--[if lte IE 6]>\n\t${child}|\n<![endif]-->',
...
},
'abbreviations': {
'a': '<a href=""></a>',
'img': '<img src="" alt="" />',
...
}
}
Element Types
Zen Coding has two major element types: “snippets” and “abbreviations.” Snippets are arbitrary code fragments, while abbreviations are tag definitions. With snippets, you can write anything you want, and it will be outputted as is; but you have to manually format it (using \n and \t for new lines and indentation) and put the ${child} variable where you want to output the child elements, like so: cc:ie6>style. If you don’t include the ${child} variable, the child elements are outputted after the snippet.
With abbreviations, you have to write tag definitions, and the syntax is very important. Normally, you have to write a simple tag with all default attributes in it, like so: <a href=""></a>. When Zen Coding is loaded, it parses a tag definition into a special object that describes the tag’s name, attributes (including their order) and whether the tag is empty. So, if you wrote <img src="" alt="" />, you would be telling Zen Coding that this tag must be empty, and the “Expand Abbreviation” action would apply special rules to it before outputting.
For both snippets and abbreviations, you can ad a pipe character (|), which tells Zen Coding where it should place the cursor when the abbreviation is expanded. By default, Zen Coding puts the cursor between quotes in empty attributes and between the opening and closing tag.
Example
So, here’s what happens when you write an abbreviation and call the “Expand Abbreviation” action. First, it splits a whole abbreviation into separate elements: so, div>a would be split into div and a elements, with their relationship preserved. Then, for each element, the parser looks for a definition inside the snippets and then inside the abbreviations. If it doesn’t find one, it uses the element’s name as the name for the new tag, applying ID and class attributes to it. For example, if you write mytag#example, and the parser cannot find the mytag definition among the snippets or abbreviation, it will output <mytag id="example"><mytag>.
We have made a lot of default CSS and HTML abbreviations and snippets. You may find that learning them increases your productivity with Zen Coding.
HTML Pair Matcher
Another very common task for the HTML coder is to find the tag pair of an element (also known as “balancing”). Let’s say you want to select the entire <div id="content"> tag and move it elsewhere or just delete it. Or perhaps you’re looking at a closing tag and want to known which opening tag it belongs to.
Unfortunately, many modern development tools lack support for this feature. So, I decided to write my own tag matcher as part of Zen Coding. It is still in beta and has some issues, but it works quite well and is fast. Instead of scanning the full document (as regular HTML pair matchers do), it finds the relevant tag from the cursor’s current position. This makes it very fast and context-independent: it works even with this JavaScript code snippet:
var table = '<table>';
for (var i = 0; i < 3; i++) {
table += '<tr>';
for (var j = 0; j < 5; j++) {
table += '<td>' + j + '</td>';
}
table += '</tr>';
}
table += '</table>';
Wrapping With Abbreviation
This is a really cool feature that combines the power of the abbreviation expander with the pair tag matcher. How many times have you found that you have to add a wrapping element to fix a browser bug? Or perhaps you have had to add decoration, such as a background image or border, to a block’s content? You have to write the opening tag, temporarily break your code, find the appropriate spot and then close the tag. Here’s where “Wrap with Abbreviation” helps.
This function is pretty simple: it asks you to enter the abbreviation, then it performs the regular “Expand Abbreviation” action and puts your desired text inside the last element of your abbreviation. If you haven’t selected any text, it fires up the pair matcher and use the result. It also makes sense of where your cursor is: inside the tag’s content or within the opening and closing tag. Depending on where it is, it wraps the tag’s content or the tag itself.
Abbreviation wrapping introduces a special abbreviation syntax for wrapping individual lines. Simply skip the number after the multiplication operator, like so: ul#nav>li*>a. When Zen Coding finds an element with an undefined multiplication number, it uses it as a repeating element: it is outputted as many times as there are lines in your selection, putting the content of each line inside the deepest child of the repeating element.
If you’ll wrap this abbreviation div#header>ul#navigation>li.item$*>a>span around this text…
About Us Products News Blog Contact Up
You’ll get the following result:
<div id="header"> <ul id="navigation"> <li class="item1"><a href=""><span>About Us</span></a></li> <li class="item2"><a href=""><span>Products</span></a></li> <li class="item3"><a href=""><span>News</span></a></li> <li class="item4"><a href=""><span>Blog</span></a></li> <li class="item5"><a href=""><span>Contact Up</span></a></li> </ul> </div>
You can see that Zen Coding is quite a powerful text-processing tool.
Key Bindings
Ctrl+,
Expand AbbreviationCtrl+M
Match PairCtrl+H
Wrap with AbbreviationShift+Ctrl+M
Merge LinesCtrl+Shift+?
Previous Edit PointCtrl+Shift+?
Next Edit PointCtrl+Shift+?
Go to Matching Pair
Online Demo
You’ve learned a lot about how Zen Coding works and how it can make your coding easier. Why not try it yourself now, right here? Because Zen Coding is written in pure JavaScript and ported to Python, it can even work inside the browser, which makes it a prime candidate for including in a CMS.
- Demo (use Ctrl + , to expand an abbreviation, requires JavaScript)
Supported Editors
Zen Coding doesn’t depend on any particular editor. It’s a stand-alone component that works with text only: it takes text, does something to it and then returns new text (or indexes, for tag matching). Zen Coding is written in JavaScript and Python, so it can run on virtually any platform out of the box. On Windows, you can run the JavaScript version of Windows Scripting Host. And modern Macs and Linux distributions are bundled with Python.
To make your editor support Zen Coding, you need to write a special plug-in that can transfer data between your editor and Zen Coding. The problem is that an editor may not have full Zen Coding support because of its plug-in system. For example, TextMate easily supports the “Expand Abbreviation” action by replacing the current line with the script output, but it can’t handle pair-tag matching because there’s no standard way to ask TextMate to select something.
Full Support
- Aptana (cross-platform);
- Coda, via TEA for Coda (Mac);
- Espresso, via TEA for Espresso (Mac);
Partial Support (“Expand Abbreviation” Only)
- TextMate (Mac, and can be used with E-text editor for Windows);
- TopStyle;
- Sublime Text;
- GEdit;
- editArea online editor;
Aptana is my primary development environment, and it uses a JavaScript version of Zen Coding. It also contains many more tools that I use for routine work. Every new version of Zen Coding will be available for Aptana first, then ported to Python and made available to other editors.
The Coda and Espresso plug-ins are powered by the excellent Text Editor Actions (TEA) platform, developed by Ian Beck. The original source code is available at GitHub, but I made my own fork to integrate Zen Coding’s features.
Conclusion
Many people who have tried Zen Coding have said that it has changed their way of creating Web pages. There’s still a lot of work to do, many editors to support and much documentation to write. Feel free to browse the existing documentation and source code to find answers to your questions. Hope you enjoy Zen Coding!
(al)




Design Informer
November 21st, 2009 11:01 amWOW! This is just awesome and revolutionary. Just added to my favorites. Will definitely read it more in depth later today.
Bronson
November 21st, 2009 11:08 amI agree, this looks like sheer awesomesauce.
Alexis Brille
November 21st, 2009 11:17 amWouldn’t say revolutionary. Auto-completion and text expanders have been out there for years.
TextExpander on Mac: http://www.smileonmymac.com/TextExpander/
Texter on Windows: http://lifehacker.com/238306/lifehacker-code-texter-windows
AutoKey on Linux: http://losingit.me.uk/2008/12/26/autokey-nifty-text-expander-for-linux
Sergey Chikuyonok
November 21st, 2009 11:55 amMost text expanders works with predefined set of snippets only. Zen Coding parses code snippet in real-time and produces desired output
Jeffrey Karbowski
February 3rd, 2010 5:25 amHere are a couple of Texter bundles I whipped up based on Sergey’s awesomeness.
Texter Bundle based on ZenCSS :
http://texterbundles.googlecode.com/files/ZenCSS.texter
and.
Texter Bundle based on ZenHTML:
http://texterbundles.googlecode.com/files/ZenHTML.texter
Nabha
April 20th, 2011 12:21 pmIt’s a brilliant step forward. Many thanks to Sergey for putting effort into this.
Aftab Khalid
November 6th, 2011 2:02 amthis is really great effort but difficult to use difficult to handle but if you get practice more on this tool it would be great for html coders :)
Maxim
November 21st, 2009 11:02 amlooks promising
thanks for yr hard work guys
Andrew McCloud
November 21st, 2009 11:15 amwould be nice if it had some sort of group support like
html:xt>div#wrapper>[div#header>ul#navigation>li*5>a, div#content>p*4, div#footer>p#copyright]
expected output http://pastie.org/709059
Sergey Chikuyonok
November 21st, 2009 12:06 pmI’m thinking about it, but I’m afraid it will add unneeded complexity to ZC. The whole idea of ZC is to quickly write code snippets using syntax familiar to any HTML-coder, not to create a new programming language to make you think about how to write abbreviation.
Rob Nixon
November 21st, 2009 6:17 pmPersonally, I don’t think the idea of grouping is any more confusing than the multiplication and numbering implementations. It doesn’t make sense to me that you can enter a parent>child relationship, but you cannot exit it.
iseem
November 22nd, 2009 5:17 amThis is interesting, but I agree with Rob and Andrew that grouping would really make a difference, and would not be at all confusing.
Also, would be nice if $ incremented inside child elements of multiplied parents,
e.g. if li#item$*2>a#child$ gave us a#child1 and a#child2.
danilo
November 25th, 2009 1:34 ami think grouping would make quite a lot of sense! e.g. div#wrapper>[div#header>img]+[div#body>h1+ul#my-list>li*5]+[div#footer>p]
Peter
April 27th, 2011 5:41 amHow about a character to make a new sibling to the parent? like + adds a sibling maybe exit to the parent level via <
div>ul>li<span
would create
<div>
<ul>
<li></li>
</ul>
<span></span>
</div>
and
div>ul>li<<span
<div>
<ul>
<li></li>
</ul>
</div>
<span></span>
Rico Sta. Cruz
November 21st, 2009 12:59 pmAnother Zen-like package solves this problem. It’s called Sparkup (http://github.com/rstacruz/sparkup), but at the moment it only has support for Textmate. You can do something like:
#header > .navigation < #area > .content + .sidebar < .copyright
The reason I wrote it like this (well, I made Sparkup :) is that if it was done via grouping (with parantheses or brackets), you would have to go back, add open parentheses to your code, then move back forward to close it. Doing it with a < means you can write your markup ‘straightforward’ without back-tracking.
Demo: http://www.youtube.com/watch?v=Jw3jipcenKc
Download: http://github.com/rstacruz/sparkup
danilo
November 25th, 2009 1:35 amah, that makes a lot of sense! so > starts a child element, and < moves up one level?
Mark
May 4th, 2010 7:11 pmPlease Sergey!!! Implement a way to travel back up the parent!!! It would make this tool exponentially better!!!!!!!!! The way of flipping the > to < is a great idea and I think would be worth it, OR can someone else just branch off the code and do this….
tripdragon
November 25th, 2009 2:00 pmThis from above.. html:xt>div#wrapper>[div#header>ul#navigation>li*5>a, div#content>p*4, div#footer>p#copyright]
Would be GODLY
There’s haml as well for another option. But that as a fast EASY to read option is bloody good.
David Hellmann
November 21st, 2009 11:18 amZen Coding is really nice! I use it for Coda and it is fast fast fast.
Pablo Jimeno
November 21st, 2009 11:22 amLooks really good, I’ll try with Aptana.
perke
November 21st, 2009 11:25 amlooking good, got to try it out.. thanks SM
Wouter
November 21st, 2009 11:28 amThis is exactly how I’ve been trying to work for years… (I was typing CSS while I was doing HTML, doing!)
Awesome demo and I’m definetly going to try it out! (Textmate)
Bruno
November 21st, 2009 11:33 amIt sounds a bit confusing for me.
matt
November 21st, 2009 11:40 amWhen programming, the actual time spent typing should be trivial when compared to any other task. I think tools like this just add complexity to a nonexistent problem.
Dean Higginbotham
November 21st, 2009 1:05 pmI agree.
David
November 21st, 2009 2:02 pmAgree.
Jansi
November 22nd, 2009 7:13 amTotalu Agree
Andrea
November 21st, 2009 2:09 pmI am with you on this too. I can code comfortably fast any way.
We as designer/developers should all be developing our own Frameworks so that we can cut and paste our favourite codes on the fly.
xenakis
November 23rd, 2009 10:42 amAgreed.
We already have copy paste for repetitive stuff, and as soon as you start doing HTML that is not that repetitive, this abbreviation language will become really verbose.
I spend most of my time scratching my head with database schemes and PHP routines, when I’m doing HTML it’s a break. I don’t want to have to think during that relaxation period.
The only time this might be useful in my honest opinion is if your job is to create HTML code all day long. Even then, you probably would have some kind of templates set up.
Cosmin
November 23rd, 2009 2:07 pmI agree with this too. When coding simple stuff like HTML, I always use copy paste solutions I keep in my HTML/CSS “library”‘, and just modify them.
Johnny Webb
October 30th, 2010 6:38 pmHonestly, guys who say that writing html/css is just copying/pasting snippets or templates should consider not writing any html/css and stick to php and databases.
As a frontend webdeveloper/designer I have to deal with such thinking on regular basis and I’m fed up with html written by the backend devs, as it’s usually based on idea of divitis and classitis “because it’s quicker”.
If you’re into databases and php, stick with that. And let the right people do the frontend job the right way with the right tools.
Especially that if you consider HTML5 coming with even more tags or imagine complex layouts, then no snippets could be useful, you wanna be quick and flexible.
Jarod
September 30th, 2011 9:03 amWell said.
Q_the_Novice
November 25th, 2009 3:47 amI agree, if u dont want 2 code look 4 another profession or become a graphic designer.
Ben P
November 21st, 2009 11:42 amThanks, will definitely try it!
One very newbie question: how do you install this (using Coda & Espresso)?
Sergey Chikuyonok
November 21st, 2009 11:46 amJust double-click on Coda’s bundle or Espresso’s sugar
Ben P
November 21st, 2009 12:02 pmThanks Sergey – had downloaded the wrong files ;-P
xbass
November 23rd, 2009 2:26 amWhere did u find the Coda bundle? It’s not here http://code.google.com/p/zen-coding/downloads/list
Gregor
November 21st, 2009 11:56 amHOT! HOT! HOT!
Tavy
November 21st, 2009 12:02 pmI’ll say after a week if this will reduce my coding time. Happy testing!
user
November 21st, 2009 12:15 pmEmacs has it already: http://www.emacswiki.org/emacs/ZenCoding
Check out the demo video: http://www.youtube.com/watch?v=u2r8JfJJgy8
bobdobbs
March 23rd, 2010 7:28 pmAlas, Chris’s version is broken for emacs inside a terminal, and gets more broked with each version.
Brett
November 21st, 2009 12:20 pmIn Russia code writes you!
Cyrillus
November 21st, 2009 12:27 pmMake a Vim script out of this and I’ll build you an altar to pray everyday for the SM gods!
danilo
November 25th, 2009 1:37 amvim support would be awesome
mktums
December 2nd, 2009 3:48 amVim support in test – http://code.google.com/p/zen-coding/issues/detail?id=16
Doug Johnston
March 30th, 2011 9:42 amA more direct link to the Vim solution: https://github.com/mattn/zencoding-vim
100r
November 21st, 2009 12:27 pmkicking asses!!!!
greg
November 21st, 2009 12:35 pmDarn, I had submitting this article in mind last week, yours however is more detailed.
simon r jones
November 21st, 2009 12:35 pminteresting programming problem to solve, but with respect I don’t honestly see the point. HTML is pretty straightforward to write with modern editors like Coda, which include auto-completion, custom snippets and tag closing. You’ve basically created a markup language for a markup language.
foo.bar
November 21st, 2009 5:31 pmI concur
peter
May 1st, 2010 8:58 pmcreate a hundred divs in a row uniquely named in just Coda. Still easy? Zen solves that.
Angel
November 21st, 2009 12:36 pmWell done sir. This is pure awesome.
Akiva Levy
November 21st, 2009 12:38 pmPerhaps it’s just me, but this logic seems a totally backwards approach to modern HTML markup. Not only is it–in my opinion–practically unreadible to develop, you lose the semantic process of HTML to begin with (meaning, starting with headers and paragraphs and then adding more meta data semantics, divs for layouts, etc). How do you go about including semantic meaning such as RDFa and Microformats without everything turning it a huge, sloppy mess to read? (Nevermind the whole dynamic DOM aspect to your page.)
I have never understood the need for these sorts of creations… It seems to take more time to learn these new “techniques” than to just learn how to markup a page semantically and properly from the start.
HTML has always been and will always be a simple set of markup elements for the reason of ease. It is easy and this just obfuscates things.
Akiva Levy, http://sixthirteendesign.com
Michael
November 22nd, 2009 2:50 pmI totally agree..
JaapRood
November 22nd, 2009 3:25 pmIt’s actually just a way to speed up the writing of semantic code. Ofcourse, HTML is pretty straight forward by itself, but many coders will find themselves wasting time on actual typing instead of the logic behind the markup. I think this script does a proper job at streamlining this process for those who are interested. Actually, I find I can concentrate on logic and semantics better now I’m not feeling like a type writer or a copy/paster.
th3mon
November 21st, 2009 12:40 pmHow to install it into Aptana 2?!? I going to install it for 4 hours and done nothing…
Sergey Chikuyonok
November 21st, 2009 12:48 pmCreate a new folder named scripts or a monkey in any top-level project folder in your workspace and drop Zen Coding in it. This is how Aptana scripts are installed. More info: https://aptanastudio.tenderapp.com/faqs/scripting-with-eclipse-monkey/create-script
gazinga
November 21st, 2009 12:43 pmI agree with simon r jones
I will stick with the old way of doing it by hand.
ziyad
July 20th, 2011 4:50 amJust try it! Believe me, you’ll change your mind and will re-phrase your comments.
LeoB
November 21st, 2009 12:45 pmAnd Chris Done has written a version for Emacs, see here:
http://www.emacswiki.org/emacs/ZenCoding
I think he is trying to combine that with yasnippet expansion at the moment.
Rico Sta. Cruz
November 21st, 2009 12:53 pmHey folks,
There’s a tool out there called Sparkup that does a similar thing, but adds more (specifically, more shortcuts, whitespace support, text and more useful selectors). :) You can see a demo of it here http://www.youtube.com/watch?v=Jw3jipcenKc — it shows some new selectors that aren’t in Zen.
And it has support for VIM! :)
Here: http://github.com/rstacruz/sparkup
withakay
November 21st, 2009 12:58 pmZen coding looks nice! What is the music, is it Seba and Paradox? Awesome tune…
factotum218
November 21st, 2009 1:00 pmI’ll have to give this a go on Aptana. Not sure I’d want to stick with it full time for every project, but sounds great for punching out some quick header footer column layouts to match up with a pre-existing style sheet.
Andy Harris
November 21st, 2009 1:05 pmIf you’re already comfortable with CSS selectors (and you probably should be) this can be a great way to get past the boring part of your page development and get you to interesting stuff.
If you can think html:xs>div#all>div#head+div#nav+div#body naturally, why shouldn’t you be able to write that and have it turn into code? I do think one level of parens would be nice, but not absolutely necessary (after all, just expand and put a new abbreviation in the appropriate spot.)
This may actually keep me in Aptana a bit longer. (I was starting to move to Komodo because of the nicer abbreviations and macros.)
DaveK
November 21st, 2009 1:07 pmI have to agree with Simon R Jones, HTML is pretty straight forward, and most people will now have a pretty comprehensive snippet library, most modern editors have a snippet facility, so dont really see the point. bet I could drag a snippet out quicker than I could Zen code the same line of code.
I chuck this in the same category as “object orientated” CSS, its just seems like wheel reinvention.
Sergey Chikuyonok
November 21st, 2009 1:15 pmBet I could write any arbitrary HTML code with ZC faster than you create snippet for it and drag it :)
DaveK
November 22nd, 2009 12:07 amOnce I’ve created the snippet I never have to type it again :-)
Sorry Sergey I dont mean to dismiss your work its obvious that a lot of hard work has gone into developing your system and I appreciate that. but I just have not seen anything that will save me time over a comprehensive snippet library? I dont doubt that the learning curvre is very shallow and you could probably kick off using it with minimal tuition.
I think its down to workflow, if you are writing a ton of code on the fly, then I appreciate that Zen would be worth the effort, for everyone else though I fail to see the time saving benefit, like I say a good snippet library, you can just drag the code to your document and a lot have shortcuts too, you cant beat that for speed.
H
March 9th, 2010 4:26 pmIt’s pretty straight forward I think: use ZC to make your snippet libraries then use your libraries to copy and paste.
Save time both ways.
GJ
Jamon
May 11th, 2010 1:48 pmSergey – can you extend ZC to allow snippets to be pasted in from a folder in your project?
e.g. div#nav>snip:my-tabs
where ‘my-tabs’ is the name of the file in a known folder and all the code is read from the file and pasted into the document on expansion.
…or something similar?
Azeem
November 21st, 2009 1:11 pmHello! I’m new coding.
how do you install the plugin in aptana?
Gabriel Silva
November 21st, 2009 7:03 pmIf you’re new coding, i recommend you to learn coding itself first.
In my point of view, this will help anyone that already knows what to do and wishes to do it faster.
Paul Irish
November 21st, 2009 1:14 pmJames Padolsey has written a similar script called Satisfy:
http://github.com/jamespadolsey/satisfy
It has a jQuery plugin API, as well.
Jeff
November 21st, 2009 2:03 pmThis is LOL
WPConcept
November 21st, 2009 2:14 pmIncredible, I will help me a lot. Thanks.
Andy Wilkinson
November 21st, 2009 2:55 pmOkay, this is pretty cool. Definitely going to try it out on my next project.
Mike
November 21st, 2009 3:02 pmWow, I’m going to give this a shot in Coda!
jc
November 21st, 2009 3:10 pmVery cool demo. Unfortunately the textmate version does almost none of the cool stuff. Hopefully that can be fixed, though maybe it’ll require the next version of Textmate.
Tempting to try using this instead of something like HAML, though I still hate wading through pages and pages of HTML when the meaning and syntax can be nice and condensed.
Matt
November 21st, 2009 3:15 pmWhich is greater?
Time saved by using this?
Or time spent learning it?
That’s the essential question.
zeemiDesign
November 22nd, 2009 2:49 amI would say that the time to learn Zen Coding is minimal (after you read this article you should be almost able to start coding that way). So the real question is whether or not it actually saves you any time when coding… I doubt that I’ll be able to code faster with Zen Coding than I code with a good Code-Editor, that I adjusted to my needs.
Anyway, interesting approach! Hat off for all the work.
Lerain
November 21st, 2009 3:40 pmJust amazing; nothing to add.
Vince
November 21st, 2009 3:56 pmWhat is the editor that is being used in the demo?
Robhert
November 21st, 2009 4:44 pmHe is using Espresso.
Matt
November 21st, 2009 5:20 pmIt’s Espresso on OSX.
Dominik H.
November 21st, 2009 4:09 pmDon’t forget to rename the Espresso plugin file from .zip to .sugar :-)
vernier
November 21st, 2009 5:01 pmwell I’d rather keep using haml, this sounds good to quickly write html pages but a good template language actually makes them maintainable afterwards
NIREUZ
November 21st, 2009 6:04 pmExcuse me but I haven’t seen something new in ZC. As my friend said above, auto complementation softwares had already released.
Lucas Arruda
November 21st, 2009 6:26 pmVery nice and elegant solution for webdesigners.
For us, developers, I still prefer generating html code through classes, like GWT and having a webdesigner to write the css.
Mark
November 21st, 2009 6:31 pmThis looks handy and fun. Will try it out. Thanks for creating
Gabriel Silva
November 21st, 2009 7:05 pmMan, this is the future.
iwani
November 21st, 2009 8:03 pmThis is awesome work! Hope to see Notepad++ support soon!
josh
November 21st, 2009 8:06 pmNot sure why everyone is whining about the time taking to learn this vs. the time it saves. If you know css then you already know how to use it. If you don’t know css well enough then you shouldn’t be using it anyway. I personally think this is a very cool tool, just wish it worked better with textmate.
hirakumar
November 21st, 2009 8:34 pmthanks for creating such software and it may help to web design but in my view it is pitty time consuming in working in interface plateform so u must not have power of 100% flexibilty. So, it may take more time in reality
Waheed Akhtar
November 21st, 2009 8:45 pmThanks for sharing this resource. Have to learn some new things to work this out for me :)
Victor
November 21st, 2009 9:05 pmI’ve tested with Espresso. It’s really great.
I learned how to use just watching the video. No time needs to be invested to learn how to use this thing. It feels like a smart snippet.
Thank you. Will be using this daily now.
:)
Victor
November 21st, 2009 9:18 pmPrevious Edit Point
Next Edit Point
Are these available in Coda plugin?
Sergey: I’ll add it for the next version
SpookyET
November 21st, 2009 11:09 pmPeople, stop whining! You don’t have to learn it. If you know CSS, you know Zen Coding. If you don’t know CSS, what are you doing here? How can you call yourself a web designer?
Zen is well designed because it feels natural. No tab completion, not even TextMate’s default bundles are as fast as Zen. Typing something and hitting tab a million times is stressing on the pinky finger and the tab key. No snippet library is as fast as this. This is much better.
When you develop carpal tunnel syndrome, you would have wished you didn’t dismiss this as a fad. Peace.
InspiredCSS
November 22nd, 2009 1:23 amThis looks very interesting. Definately going to give it a try. I’m all for speeding up development time.
JulienL
November 22nd, 2009 1:44 amI’ll try with Aptana for sure. This looks so good !
Ferdy
November 22nd, 2009 1:52 amRespect for the effort, and I’m sure some people will love this and really increase their productivity. For me, however, it feels like learning yet another language. Plus, the time spent on markup when doing web development usually is only quite small. It is debugging, database queries, scripting and cross-browser CSS that cost 90% of the time.
Niels Schuddeboom
November 22nd, 2009 2:44 amLooks cool! I should write some speech macros for that! :)
Burhan KILINC
November 22nd, 2009 3:03 amLooks useless for me. I use html to write the template for the CMS and the template file is very small compared to all other files (CSS, php, js etc). Content is entered via Web interface, by the people which does not use HTML markup. This thing adds complexity, and it is not for me.
frank
November 22nd, 2009 3:54 ami simply love it! and it’s not important that it’s not the first plug-in that do that!… i really love it. great work! thankkkkk you
Christopher Anderton
November 22nd, 2009 4:19 amI think the first time i saw this, was in GoLive (Adobe).
Askhari
November 22nd, 2009 4:45 amThis is awesome! Simply great. A lot of the people commenting say this is useless as html is fast and easy to write anyway, but I must make a point there:
I am mostly marking up designs: designing them in PS, writing the html and styling them. In my experience, even though html is no difficult nor time consuming task, when marking up a design which might take about 5h to complete, the html markup is often still responsible for 1/2h or more of that time, depending on the complexity.
It’s something I don’t want to spend time with, but which has been to be done manually as visual editors leave you with very little control over the output. Writing good html is never the main task, but it is work that mostly has to be done before you can start the “real work”, means writing css or programming anything.
So this ability, to write the markup with CSS-like snippets is simply awesome: Even though it is not revolutionary, it simplifies the idea to the most usable possibility – and I’m pretty sure, it will save me at least 10% of my time working on one website. That might not be worth it when you work on a big project, or do mainly programming. But for producing markup for “everyday work”, simple websites which have to be marked up quickly, it is absolutely perfect!
I just didn’t quite understand how it works with dreamweaver, theres a download for the extension, but I didn’t work out how to use it. Maybe I overlooked somehting?
Luis Camilo
March 21st, 2010 8:21 amOn CS4 —> Once the extension is installed,
GO TO Commands->Zend Coding->Expand Abbreviation
Or simply type press (Ctrl) + (,) the zen line.
ordep
November 22nd, 2009 5:12 amAny chance to get this converted into a Komodo addon? That would rock!
Ahmed
November 22nd, 2009 8:10 amGreat work , this will save me alot of time .
and +1 for Komodo add-on
manuel
November 22nd, 2009 5:13 amnice idea, but totally not applicable in reality
bob
November 22nd, 2009 5:46 amIf you’re using Ruby, then look into HAML/SASS. This is interesting, but haml is already very well implemented for this sort of thing.
Joris_Lucius
November 22nd, 2009 6:41 amJust tried it in Textmate, amazing!
Branden
November 22nd, 2009 6:57 amI’ve been using AutoHotkeys to do this but this seems simple and I feel comfortable already with the syntax and I’ve only spent 15 mins on the site. Will give it a try. Nice work.
khiangte
November 22nd, 2009 7:20 amThis post is really good
BeBeN
November 22nd, 2009 7:21 amgreat…ck ck ck…online tools its a cool and effisien
Johnny
November 22nd, 2009 7:33 amThis looks really useful.
Ali
November 22nd, 2009 7:39 amWow. All those editors but no love for Komodo? :(
Sergey: Komodo is in our feature request list: http://code.google.com/p/zen-coding/issues/detail?id=24
Prashant
November 22nd, 2009 7:44 amThis is a very nice tool. I’ve just done a quick test with Espresso and it works fine!
However, it would be easier if the Espresso plugin already came compiled instead of one having to compile it.
Nice work!
Sergey: compiled sugar is available for downloading: http://github.com/sergeche/tea-for-espresso/downloads
toth
November 22nd, 2009 8:04 amReally nice! Can someone tell me what’s the music track in the video?
Sergey: it’s Seba & Paradox — Move On
Kristaps Karlsons
November 22nd, 2009 8:05 amWow. Just installed it with Aptana, like 30mins ago, and it rocks hard. Dude… How could I live without this?
Allan Greenspan
November 22nd, 2009 8:16 am“Olle Kamellen!” — as we say here in Germany. Been around for several months already. However, nice article. Big ups!
Jean-Michel Mermet
November 22nd, 2009 8:31 amDo you have a BBEdit version ???
Thanks
Sergey: No, but you can fill an issue: http://code.google.com/p/zen-coding/issues/list
chris
November 22nd, 2009 9:10 amThat is amazing!
Andrea
November 22nd, 2009 9:50 amI installed this extension for dreamweaver but, i don’t know how it work, or what I have to do to make it work or use it in dreamweaver, if any one knew please help me. Thanks for sharing this great tips, it’usefull!
Allan Greenspan
November 22nd, 2009 9:58 amStep 1: Put Dreamweaver aside and never touch it again
Step 2: Goto aptana.com/studio and fetch the latest version
Step 3: Fetch and install the Zen Coding plugin for Aptana Studio
Step 4: Feel the Zen and become one with your markup
Step 5: Repeat from step 1 on
GreLI
November 24th, 2009 5:57 amAnd waste about 20 times more memory…
Rober
December 14th, 2011 8:41 amWhy would you install Aptana and ZenCoding over and over again? There is no need for a loop statement here. Your coding is flawed.
zolotoy
November 22nd, 2009 10:55 pmUse command in menu: Commands>Expand Abbreviation
Thomas
November 22nd, 2009 9:58 amI would be also happy to see it on Notepad ++.
However I just tried on DW cs4 (by Adobe Estension Manager cs4) and had nothing. How can I install it? :D
Respect btw!
Pablo
November 22nd, 2009 10:08 amДа, это очень круто, и к тому же бесплатно
Vinícius Rodrigue
November 22nd, 2009 11:13 amwow! powerful! +D
Spencer Schoeben
November 22nd, 2009 11:20 amThis is awesome!!!! I’m using it with TextMate. Would love to see full support eventually. :)
Keep up the awesome work.
scantraxx
November 22nd, 2009 11:23 amthank you verrymuch, that is amazing !
Clarke Isackson
November 22nd, 2009 11:43 amThere are pros and cons depending on your paradigm for the moment. I tried Zen and realized it saved me lots of keystrokes with just div#content>h1+p. You can sort of think about what you want in Zen and then you have it to complete in a moment.
Guess I like it more than not and will use it. Very slick.
SpookyET
November 22nd, 2009 1:04 pmIn this article, it says that Espresso has full support, but the compiled sugar only supports Expand Abbreviation. Also, CTRL on the Mac is awkward. Maybe, Command + Option should be used.
Sergey: looks like you’ve downloaded onecrayon’s sugar. Try this one: http://cloud.github.com/downloads/sergeche/tea-for-espresso/TEA_for_Espresso.sugar.zip
SpookyET
November 22nd, 2009 4:20 pmI installed the one linked in the article. Now, I installed the one you just linked here. This one doesn’t work at all. It gets installed, but it responds to no keyboard shortcut commands. None of them.
You don’t see Action > HTML > Expand Abbreviation item? Can you fill an issue about this problem? http://code.google.com/p/zen-coding/issues/list
xetoile_2007
November 22nd, 2009 1:15 pmI would like to thank all those who featured on this site and definitely will come back to visit again
Gary
November 22nd, 2009 1:44 pmCSS and HTML is a simple art form, why complicate it? No seriously, what is the benefit? Time?
YoYurec
November 22nd, 2009 3:01 pmYes, time!
I think it’s very useful.
Victor
November 22nd, 2009 6:38 pmit saves EVEN MORE time.
Alex Batista
November 22nd, 2009 1:58 pmNice article! Thanks for the information. I use the Dreamweaver CS3 or Komodo Editor, it’s a good editor for speedy coding.
Andrea
November 22nd, 2009 3:35 pmHow the hell you setup this for Aptana? There is no document or something to read on how to setup all?
I just hate it because I dont know how to get it work…aaaa!!
Sergey: please read comment #38
Matt Mueller
November 22nd, 2009 6:06 pmAmazing!!!
Sildeyna
November 22nd, 2009 8:30 pmIm crying now…
Harsha M V
November 22nd, 2009 8:34 pmAmazing post. wish it ahd support for dreamweaver
shubelal
November 22nd, 2009 8:38 pmnice tutorial but little bit confusing for me
thanks
Ilia
November 22nd, 2009 8:55 pmThis looks really great, any chance for a Notepad++ plug in? :)
Kamran
November 22nd, 2009 9:47 pmLovin’ it ;-) really fast, using it with APTANA the results are awesome, a true time savor but needs some more practices!
chirag
November 22nd, 2009 9:56 pmhai Kamran,
How to install in APTANA?
Chris
November 23rd, 2009 6:40 pm1. Download Zen coding for Aptana: http://code.google.com/p/zen-coding/downloads/list?can=3&q=aptana
2. Go to your Eclipse/Aptana project folder, create folder “monkey”
3. Extract Zen coding.zip into projectfolder/monkey/
4. (Re)Start Aptana (or rebuild workspace)
That’s it.
Full explanation: https://aptanastudio.tenderapp.com/faqs/scripting-with-eclipse-monkey/create-script
I have been using this with Eclipse 3.5.1, Aptana 2 and PDT 2.2 now, I was very glad to see it even works inside blocks of php where you need to echo some html. Nice work!
chirag
November 24th, 2009 9:10 pmhi chris,
Thank you for reply but i do it that but i don’t know how to use
can you understand me? ZC setup step by step
zolotoy
November 22nd, 2009 11:05 pmHow to use Zen Coding for Dreamweaver:
1. Install extension,
2. Restart Dreamweaver,
3. Use command in menu: Commands>Expand Abbreviation.
chirag
November 23rd, 2009 9:24 pmhi Zolotoy,
Thank so much for setup zen coding in Dreamweaver.
Can you tell me how to use in Dreamweaver?
Pete Forde
November 22nd, 2009 11:24 pmWhat is the advantage over just using Haml, which already has a huge installed base and support in just about every editor?
Rimantas
November 24th, 2009 1:29 pmAn advantage is that you can use natural CSS syntax.
tripdragon
November 25th, 2009 2:51 pmEhhhhhhh you can STILL use normal css in HAML. So far this is a one trick pony. While I wish that pony ALSO created the css code at the same time.
Praveen Vijayan
November 22nd, 2009 11:25 pmits really nice time saver. Dreamweaver extension is really useful.
Julio Flores
November 22nd, 2009 11:57 pmWell, many people think it’s great and some other it’s useless… I’m in the middle, but what I really want to “comment” is that this kind of applications could be transformed into another one and also “could” generate new things… ahmmmmmm I was thinking… what if this will be applied in a “kind of” compression… or what if a browser could interpret this “code” and auto-generate the result and then render it… what if there was a program to do the reverse process for us!!
Just my thoughts
mustafa
November 22nd, 2009 11:58 pmHow to install in Pspad ?
DjDesignerlab
November 23rd, 2009 12:28 amI have never worked with Zencart. But after reading this article. I find it easier now. Thanks.
Zapix
November 23rd, 2009 12:44 amtextexpander works for me, tho this looks like a handy tool. Davai Sergey
Cyan
November 23rd, 2009 12:55 amAnybody succeeded installing this for NetBeans, I have only found specs in russian :(.
Anyway this looks awesome, it would save a lot of time when building fast html/css/js prototypes.
Sergey: NetBeans doesn’t have support of Zen Coding yet, we’re just shipping snippets used in ZC for NetBeans
BooshMedia
November 23rd, 2009 1:15 amits a good idea, but I doubt many experienced developers will use it
caryseo
November 23rd, 2009 2:35 amyah really it’s a good idea.. but it’s depend on how they use it because some of it can’t use.
Zoe
November 23rd, 2009 2:45 am@zolotoy got it mostly right.
How to use Zen Coding for Dreamweaver:
1. Install extension,
2. Restart Dreamweaver,
3. Use command in menu: Commands>Expand Abbreviation.
How to use Zen Coding for Dreamweaver using only the keyboard:
To create shortcut to ctrl + ,
1. Edit > Keyboard Shortcuts
2. Duplicate the current set of keyboard shortcuts (the first mini-icon on the left at the very top of dialog box)
3. Expand “Commands”
4. Scroll down to Expand Abbreviation
5. In the “Press Key” line press the following keys on the keyboard ‘ctrl’ ‘,’.
6. Click ‘Change’
7. Click OK.
8. Write your zen code as described above – to expand it press ‘ctrl + ,’ and watch the magic happen!
P.S. You can use any keyboard combination you like. The above example shows you how to use the common ‘ctrl + ,’ keyboard shortcut.
chirag
November 24th, 2009 8:47 pmThank you so much
it’s working good can you tell me how to using CSS?
Khalness
January 10th, 2010 9:15 am@Zoe
Thank you for helping me use Zen Coding with Dreamweaver CS4 – anyone searching in Google like I did, use Zoe comments – explaining how to use the menus to custom shortcuts etc etc.. poor documentation.. need to post this on their wiki
Excited to use it
Maicon Sobczak
November 23rd, 2009 2:51 amIncredibly useful! Like javascript, is the time of html coding to evolve, turning our coders life better. Thank you for share.
EchoPark
November 23rd, 2009 3:09 amI adapted the code to UltraEdit javascript engine. I posted a version on the uedit forums at http://www.ultraedit.com/forums/viewtopic.php?f=52&t=8819
to use it, copy the code and save it in a .js file, and load it in ultraedit in the scripts menu.
Hope it helps! ^^)
Tom
November 23rd, 2009 3:55 amEspresso Users…
Any ideas how to specify cursor postiton in espresso snippets?
Liam
November 23rd, 2009 4:10 amThis is brilliant!
Martin
November 23rd, 2009 4:19 amExcellent stuff but whenever I try to expand the abbreviation (in Coda) of the first example div#content>h1+p, the p expands to padding:;
Any ideas?
Justine
November 23rd, 2009 4:31 amI have the same problem in Coda. P always expands to padding.
Sergey Chikuyonok
November 23rd, 2009 4:34 amPlease re-download Coda plugin from http://github.com/sergeche/tea-for-coda/downloads
I’ve removed CSS inheritance so ‘p’ should work fine
Philipp Hinrichsen
November 23rd, 2009 5:14 amOkay i am totaly amazed by Zen coding played the whole morning with it i am not getting tired of it. So i’ve got a short question. I am using Aptana Studio and I added a my_zen_settings.js file to the folder and added the following code:
zenExtend(zen_settings.html.snippets, {
‘p:lipsum’: ‘Lorem ipsum …’,
});
This should basicly add a p tag with lorem ipsum text in it. But eventualy it doesn’t work for. but if i add that one in the zen_settings.js it works perfectly. But for later updates i wanted to have them in a diffenrent file. I took eventualy the the filename which is already included in the Expand Abbreviation.js. I don’t know where it went wrong.
What i am also missing as previous comments said is the grouping of elements this would come handy in building the first markup this could then be in one line.
html:xt>div#head+(div#container>(div#sidebar>ul#nav>li.menuitem*5>ul.submenu>li.submenuitem*5)+div#content)+div#foot
This is just one example it isn’t perfect but it shows that it would be so perfect to add everything needed just in one line of code.
Thanks for your effort it saves a lot of time for everyone who has to write a lot of markup. If i could help I would do it.
You’re using old-style (v0.3) extension mechanism. The new one is much simpler:
var my_zen_settings = { 'html': { 'p:lipsum': 'Lorem ipsum ...' } }Alan
November 23rd, 2009 5:17 amAdding to the Notepad++ plugin request…. ;)
EllisGL
November 23rd, 2009 5:44 amNotepad++ and NetBeans =)
Alexander Makarov
November 23rd, 2009 7:21 amThere is limited NetBeans support.
Luke Jones
November 23rd, 2009 5:33 amThis is how most of us should be coding by now anyway, right?
Martin
November 23rd, 2009 6:31 amYep, I’ve just downloaded and tried it but p is still expanding to padding.
After unzipping the download, I noticed the date modified is showing 3 November not 23.
Mike
November 23rd, 2009 6:59 amI’m having the same problem…Did you download the “TEA_for_Coda.codaplugin.zip” file, or use the “download button and download the “sergeche-tea-for-coda-2522cf0.zip” file? I think he probably updated the latter, but I don’t know how to install it as it’s not a plugin file recognized by Coda. Anyone know how we can install that version?
Eze
November 23rd, 2009 6:36 amnotepad++ plugin :(
Rich
November 23rd, 2009 6:38 amI have spent 30 mins downloading/installing Aptana, then trying to get ZC installed but with no joy.
Can somone write a small tutorial as how to get this damn thing working in aptana? I have tried what comment #38 said, and also checked the aptana documentation which is just too heavy… i WOULD use this tool allot, and would recommend it to friends etc.. if i could get it working.
You need to make it idiot proof to instal and get using it, because right now, there are loads of people asking “how the hell do you get it working with Aptana??”
Sergey Chikuyonok
November 23rd, 2009 8:31 amPlease drop me an email at serge.che@gmail.com
I try to help you.
Zach Leatherman
November 23rd, 2009 6:44 amSounds like better placement in the toolchain than the JavaScript HTML Element creator that used this same idea released in July 2007.
http://www.zachleat.com/web/2007/07/07/domdom-easy-dom-element-creation/
Aaron
November 23rd, 2009 7:49 amI disagree with the criticisms that this plugin
(1) adds unnecessary complexity,
(2) will lead developers to ignore semantic principles,
(3) introduces spaghettism and
(4) requires that one learn a new language.
(1) In what way does it add complexity? In terms of output, you’re getting nothing more than what you would have coded by hand anyway. *You,* as the developer, determine the complexity of your HTML. ZC has no “norms” or “principles” to learn that intrude on existing best practice in HTML. It’s just a shortcut to syntax combination; concatenations on *your* dime.
(2) Indeed, it is a proto-description language (a mark-up language for a mark-up language, or something more or less close to this). But to call it a mark-up language in any technical or substantial sense would be erroneous commentary; it’s really just hyperbolic. To be a full description language, the shortcuts would have to have meaning in their own right. However, the plugin author has made it clear that ZC purpose is “not to create a new programming language to make you [think about how to write abbreviation].” When you write *with* ZC, not *in* ZC, you are still *thinking* in terms of HTML. One is building an image before one’s mind as to what, say, the structure of the document will ultimately be. ZC helps you get to that conclusion faster. (Why am I arguing for *code snippets*? In what way does any criticism laid here not also apply to mere use of code snippets?)
If you want to call it a proto-descriptive language, that’s fine. But it’s really just a “post-it note” language. You’re referring to existing HTML syntax only. ZC introduces no constraint on validity. If you want to make invalid mark-up, you can do this with ZC as well. But there’s no such thing as ZC invalidity. All you can do in this vein is fail on syntactic operation. Mark-up languages have validity and semantics. ZC leans on HTML’s validity, and it has no semantics.
(3) This is absurd. *You,* as the developer, introduce the combinatorial possibilities that ZC makes more easily printable to the screen. There’s only as much spaghetti as *your* competence, prowess and grace will allow.
(4) Basic arithmetic? CSS? CSS-like syntax is exploded into HTML syntax. Where is the “new language”? And even then, developers are expected to pick up no more than 5 “new to HTML” principles from CSS. Principles that are conceptually ingrained, or at least should be, already (after a sufficient understanding of CSS).
But I do agree: Grouping makes sense. Parent-child relationships presuppose the possibilities of multiple children to one parent. Without this feature, ZC incurs diminished conceptual integrity. It *feels* wrong, on many occasions, because I have a picture of my desired mark-up before my mind, and without grouping, I am presented an obstacle. Thus, I have to split my ZC string into parts. It’s less than irritating, I’ll admit, but I still think the conceptual argument laid out above has merit. ZC at present does not seem conceptually, or theoretically, pure.
Also, the arguments about RDFa hold no water. RDF and RDF-like languages have their own implementation problems. Once those are sorted out, ZC may likely increase productivity and speed. RDF is time-consuming. ZC saves time by mapping mark-up possibilities to “dynamic post-it notes”, etc etc.
Ken Pendergast
November 23rd, 2009 8:24 amI really think it is a smooth concept and idea. From the other comments it seems like there is a lot of problem with implementation right now.
Andrew Philpott
November 23rd, 2009 8:35 amThis seems pretty sweet so far. I’m having a couple issues in Espresso, though. For some reason the Previous Edit Point and Next Edit Point commands aren’t working. Also, ctrl+h keeps launching a safari window with a google search for “site:http://htmlhelp.com/reference/html40/“.
Robert
November 23rd, 2009 8:46 amI downloaded the tea for coda plugin however it appears to be missing some features such as the match pairing and wrapping abbreviation, unless its just me…
Chris
November 23rd, 2009 8:54 amThis is sweet. I am playing with it in Aptana and loving it! Just wish I could use Coda!
Dan
November 23rd, 2009 9:43 amNotepad++ for the win!
SeanJA
November 23rd, 2009 9:45 amSo… why did you build it for Aptana rather than just Eclipse? Were there plugins that were needed that are part of Aptana?
José Teixidó
November 23rd, 2009 12:53 pmAWESOME!, been using some of this on TextMate for quite a while… I was issued a PC laptop not long ago and had to resort back to Notepad++… a shame the plugins are not available for it!.
PLEASE!!! Notepad++ support will be VERY WELCOME!
daGrevis
November 25th, 2009 10:41 amAwesome! :)
It will be great, if there would be plugin for notepad++, yea… Please! :)
Jacob
November 23rd, 2009 12:55 pmNOTEPAD++ support please! ill pay you for it :)
Ingus
November 23rd, 2009 1:22 pmAwesome idea, but I guess you need some time to get used to write like this. The best part is that if you’re not a CSS pro yet, after writing HTML this way you will be one for sure!
Morning Toast
November 23rd, 2009 1:54 pmThis isn’t a replacement for knowing HTML, obviously, but I think it’s simple and quick enough that it beats hand coding a full template.
Playing with the demo…only thing I think it needs is an abbreviate command. I would type my shorthand, expand it, and then want to re-shrink it. I just had to use the undo button but a shortcut would be nice.
If I didn’t already know HTML and CSS really well, this would be as confusing as hell. Definitely not for the learner.
But pretty spiffy if you ask me.
Chris
November 23rd, 2009 6:31 pmCtrl + Z works fine as an undo-shortcut, even in the demo (Firefox 3.5).
Sean
November 23rd, 2009 6:56 pm+1 for a Notepad++ plugin :)
Paul
November 23rd, 2009 7:50 pmI love to see this feature inside Notepad++ soon
kunal
November 23rd, 2009 9:59 pmHi. thank you very much for such great information. It’s a really very good way to write HTML/CSS Codes and save our lots of time.
Thanks!
PHP Web Developer India
Martin Bean
November 24th, 2009 1:24 amUnfortunately I’m not doing much front-end development at the moment (bust wrapped doing back-end development for a huge project) but I have installed it in e text editor and used it and it is fantastic. I thought e’s built-in snippets were great; this makes it even greater! An almost-perfect code editor!
However, I can’t shake the feeling that I’ve come across Zen Coding in the past? Has this been reference or hinted at in the past?
Clem
November 24th, 2009 2:30 amCoding, coding, coding…
Please Smashing Magazine, don’t forget print designers, I’m really going to erase you from my bookmarks…
Carlos Eduardo de Souza
November 24th, 2009 3:35 amI love the idea, but I prefer using Coda Clips instead Zen Coding.
With Coda Clips I can customize whatever I want, so I don’t need to memorize some shortcuts, since I make it my way.
orsome
November 24th, 2009 4:04 amWoot! But i need Eclipse support!
Jason Grant
November 24th, 2009 4:15 amThis is completely unnecessary as it does not fit into my own workflow for example. It also requires me having to learn new syntax and I would be getting that wrong on regular bases and then having to debug that instead of using my own compoenent framework to generate code + content with it in one line for most tasks that are shown within the video.
Russians have too much spare time on their hands!? ;-)
Jeff
December 2nd, 2009 11:12 amWell, Dreamweaver and many other tools are completely unnecessary because (given sufficient time) you can hand-code HTML/CSS and develop stunningly beautiful and functional pages. If it doesn’t fit your workflow, that’s another matter over which you have complete control and choice.
If it’s useful for even a few people, it’s useful! I can imagine a situation where a person very familiar with this technique might develop a prototype on the fly while talking with clients, imposing a structure on their ideas almost as quickly as they were spoken. That would be impressive and useful.
@orsome: I’m pretty sure there’s an Aptana plug-in for Eclipse … ;)
Alex Batista
November 24th, 2009 10:00 amI don’t know how do to add a plug-in on Aptana. The files of folder only exist .js. How include it?
Daniel Glazman
November 24th, 2009 2:04 pmThat’s neat but sorry to say, there’s nothing new here. I did exactly this 11 years ago with STTS :-)
See http://www.w3.org/TR/NOTE-STTS3
Peter
November 25th, 2009 6:13 amZenCoding Komodo Extension
found this add-on for Komodo. It’s not perfect yet, but it’s definitely better than nothing:)
just HTML, no CSS
http://cakealot.com/zencoding/
thanks a lot to cakealot
bob
November 25th, 2009 3:22 pmCan’t wait till this gets implemented in quanta!
DiDA
November 26th, 2009 4:10 amThis looks great! Any ideas on how to install on Zend Studio for Eclipse 6.1?
Sweenie
November 26th, 2009 9:04 amThanks for your hard work! I’m excited to give this a try. . .
idan
November 26th, 2009 11:55 amthx. a solution which i was looking for… for 2 years. finally i have found it. =]
Development Team @ Cutpastecreate
November 27th, 2009 9:14 amWow! This looks like an awesome way to speed up all that tedious html writing, I’m excited to see how this concept will progress. It seems that the more advanced websites get, the less the creators have to deal with the actual nuts and bolts of the site, the abstractions that are available for html, css, javascript et al are great, and it means that we have more time to focus on what we want the site to actually do, rather than taking time making it do it.
llcheesell
November 28th, 2009 6:26 amAwesome software! It looks so cozy.
I wanna this plugin runs on Notepad++!
pauk960
December 1st, 2009 2:01 amme too. :)
mynameisorman
November 30th, 2009 3:29 pmJust using this with Coda. Is there anyway to change the shortcut keys for the expander?
feeling
December 2nd, 2009 9:45 amI installed this extension for dreamweaver but, i don’t know how it work, i can’t find “Expand Abbreviation”, if any one knew please help me. Thanks for sharing this great tips, it’usefull!
orsome
December 3rd, 2009 4:15 amHere is how you install it in any eclipse 3.5 even without aptana:
(got it from this german site http://nerdpress.org/2009/11/23/zen-coding-mit-eclipse-pdt/)
- Install Eclipse Dash inside eclipse from this update site: http://download.eclipse.org/technology/dash/update/
- create folder “scripts” inside your project and put the aptana zencoding files in it
- restart eclipse
- juggle with the keybindings (I changed M3+E to M1+E in “Expand Abbreviation.js”)
- et voila zencoding in eclipse :)
Davis Hammon
December 3rd, 2009 2:35 pmI am incredibly excited about this. Very cool stuff!
tom
December 4th, 2009 2:38 pmwaiting for notepad++
Andy
December 23rd, 2009 1:32 amYeah, notepadd++ would be excellent.
Ant
December 11th, 2009 7:40 amDoes InType supported?
jussij
December 22nd, 2009 10:11 pmThe Zeus for Windows editor now also supports Zen Coding: http://www.zeusedit.com/forum/viewtopic.php?t=2876
Christian Seifert
December 26th, 2009 3:58 amHi guys,
I use Zend Studio 5.x. Is it available for this version?
Laurent
December 29th, 2009 3:16 pmI use it with sublime, it’s awesome.
Thanks Serguei !
Amanda
January 1st, 2010 8:37 pmThis definitely looks like something that would make my life easier, once I got the hang of the syntax. After that shiny Comp. Sci degree, should be a cinch… maybe?
Sapphiro
January 1st, 2010 8:48 pmThis is good, but I’d still prefer to type everything out by myself though, don’t like shortcuts. ;) This might just gradually make everybody forget their xhtml/css codings imo. =p
Martin Lenngren
January 4th, 2010 7:26 amThis is really great. A time saver for sure! I’m using it with Aptana and I love it.
Victor
January 7th, 2010 8:07 pmHi,
what editor did you use in the demo video?
thanks
Janes Oosthuizen
January 8th, 2010 4:52 amThis is truely remarkable! This is going to makes things easier!
Brad
January 8th, 2010 7:07 pmIs anyone using this with Aptana 2.0? I can get the menu to show up, but all i get is errors saying zen coding settings are not defined. Also i think eclipse monkey has been put up on the shelf as it doesnt appear to be bundled with Aptana 2.0.
Bakaburg
January 16th, 2010 7:46 amI can’t find the Coda version! Where is it?
nico
January 18th, 2010 4:25 pmHi,
This is a duplicate of Victor question, but yeah, what editor did you use for the demo video? I really like the navigator panel it has there. Thanks much!
nico
January 18th, 2010 5:10 pmNM I found it. It’s Espresso. http://macrabbit.com/espresso/features/edit/
ferizaenal
January 20th, 2010 2:19 amgreat… i m using it with topstyle and its definitely fast-fast-fastttt
John Macpherson
January 23rd, 2010 12:45 pmWow, this is something that is a great time saver.
To make ZenCoding go from great to incredible, grouping would be that addition. You could then pretty much write the whole basis to a semantic html document in one line.
I really appreciate the time you have put into this and cant thank you enough.
luiszacheu
January 26th, 2010 5:07 pmis very very cool!!!
i like it´s new idea.
all more fast….
JoeDev
February 14th, 2010 4:36 pmSeriously though, if you guys are sending html over the wire, YOU ARE DOING IT WRONG. :)
Program the Dom and scale. (sorry lynx)
Darroch Reid
February 15th, 2010 12:13 amZen Coding is proving helpful.
Quick Questions:
1. Can you make it possible to specify the value of an attribute for ‘expand abbreviations, without the need to highlight the abbreviation please?
2. When using ‘Wrap with Abbreviation’ can you allow multiple uses of the selected text?
Q1:
Using Expand Abbreviation:
a[title=something] gives ‘No result’
a[title="something"] gives ‘No result’
However, if I highlight the abbreviation (and expand the abbreviation) I get the following:
a[title=something] gives
a[title="something"] gives
I think that you should be able to specify the value of the attribute (e.g [rel="nofollow"] ), without needing to highlight the text.
Using the Wrap with abbreviation:
li*>a[rel="nofollow"] gives…
home
about
portfolio
contact
So, the value of the attributes can be set this way, which I like.
Q2:
Feature Request: Can you make it work so that you can use the selected text more than once:
${selected}
i.e. change the ${selected} to the selected text for each entry.
about
As multiple *’s don’t work, it difficult to suggest a syntax, so the closest I can produce at present is:
li.nav-*>a[href=*.html]
Thanks
Darroch
Darroch Reid
February 15th, 2010 12:26 amZen Coding is proving rather helpful.
Quick Questions:
1. Can you make it possible to specify the value of an attribute for ‘expand abbreviations, without the need to highlight the abbreviation please?
2. When using ‘Wrap with Abbreviation’ can you allow multiple uses of the selected text?
Q1:
Using Expand Abbreviation:
a[title=something] gives ‘No result’
a[title="something"] gives ‘No result’
However, if I highlight the abbreviation (and expand the abbreviation) I get the following:
a[title=something] gives
a[title="something"] gives
I think that you should be able to specify the value of the attribute (e.g [rel="nofollow"] ), without needing to highlight the text.
Using the Wrap with abbreviation:
li*>a[rel="nofollow"] gives…
home
about
portfolio
contact
So, the value of the attributes can be set this way, which I like.
Q2:
Feature Request: Can you make it work so that you can use the selected text more than once:
${selected}
i.e.
about
As multiple *’s don’t work, it difficult to suggest a syntax, so the closest I can produce is: li.nav-*>a[href=*.html]
Thanks
Darroch
Darroch Reid
February 15th, 2010 7:19 pmZen Coding is proving rather helpful.
Quick Questions:
1. Can you make it possible to specify the value of an attribute for ‘expand abbreviations’, without the need to highlight the abbreviation please?
2. When using ‘Wrap with Abbreviation’ can you allow multiple uses of the selected text?
Q1: Using Expand Abbreviation:
a[title=something] gives ‘No result’ while a[title="something"] also gives ‘No result’.
However, if I highlight the abbreviation (and expand abbreviations) I get the following:
a[title=something] (or a[title="something"]) gives an a tag with attributes (href=”" title=”something”).
I think that you should be able to specify the value of the attribute (e.g [rel="nofollow"] ), without needing to highlight the text.
Using the Wrap with abbreviation:
li*>a[rel="nofollow"] gives…
tags: li – a (href=”" rel=”nofollow”) wrapped around the highlighted text. home
So, the value of the attributes can be set this way, which I like.
Q2:
Feature Request: Can you make Zen Coding work so that you can use the selected text in more than once place within the highlighted text:
1. for part of a class/id name (class=”nav-highlightedtext”)
2. for a value of an attribute [href="highlightedtext.html"]
As multiple *’s don’t work, it difficult to suggest a syntax, so the closest I can produce is: li.nav-*>a[href=*.html]
Thanks
Darroch
@moderator – can you remove my previous posts? Thanks
Rubberdog
February 17th, 2010 12:04 amA revolution…totally awesome
Peace love…respect
Mike Crittenden
February 17th, 2010 1:06 pmFor any Gedit users, I’ve been continuing development and adding features to the above Gedit plugin at http://github.com/mikecrittenden/zen-coding-gedit
Duncan Beattie
March 5th, 2010 4:54 amtea-for-coda plugin isn’t working for me :(
I’m on Coda 1.6.10 (latest version) and when I double click to install the plugin it all seems fine but the plugin menu isn’t showing up. I’ve tried this on a couple of machines with no joy.
I downloaded the older zenCoding plugin http://zen-coding.googlecode.com/files/Zen.Coding-Coda.v0.3-UB.zip and this works fine but TEA just wont play
any ideas would be most appreciated
UPDATE: Scratch all that, I eventually got it to load by clearing out everything from the plugins folder, restarting the machine and then loading the plugin again. I think it probably works if you just quit Coda the install the plugin
mtness
March 8th, 2010 4:42 amzen coding for notepad++ is now available!
get it here: http://code.google.com/p/zen-coding/downloads/detail?name=Zen.Coding-Notepad%2B%2B.v0.6.zip
Many thanks to all who made this possible.
Kind regards, mtness
The New Black
April 14th, 2010 3:59 amThis is so great, just wish there was more documentation. Once i get used to the syntax i can see how this could be super fast, just an annoying learning curve :-s
difyalkalia
April 24th, 2010 7:47 amI risk to seem the layman, but nevertheless I will ask, whence it and who in general has written?
peter
May 1st, 2010 8:48 pmwhoever here is saying that they don’t understand why this is useful is a complete noob. coding good. typing bad.
Bill Chmura
May 3rd, 2010 8:48 pmI am amazed how intuitive the syntax is for this tool… You really did a great job on that.
It took me longer to get it running in Zend Studio and OSX (change to using M4 if you have issues) than it did to learn how to do some relatively complex html generation. And I really did not watch the video or read much of the docs… just some of the examples, and boom… away we go.
Thanks, this is a keeper in the toolbox.
Ulyses
May 11th, 2010 11:34 amWhile this may seem useless, it’s still a logical beauty.
Not that I’ll be using this one, but things like this, evolving from one to another, grow one day into a nice helper in an IDE.
So this grandpa will probably meet his grandson soon enough, and this grandson will be a finite idea.
Thank you for causing progress.
cesar
May 11th, 2010 3:07 pmWow, I am amazed at this. I will definitely use it, I am sure it will really help. Thanks a lot :D
Michael Persson
May 12th, 2010 2:54 amDefinitely something to speed up the work with, i will try this with Aptana…
Thanks a lot
Shaun
May 16th, 2010 8:07 pmVery nice tool! Awesome.
Peter
June 3rd, 2010 11:43 amHope one day we’ll get a new version of textmate that can offer full support!
Peter
June 3rd, 2010 12:37 pmBTW: great article!
Harsha M V
June 10th, 2010 11:56 pmjust awesome.. way to code.. wish i knew it long before…
Jonathan
June 20th, 2010 10:02 pmThe Textmate bundle does actually offer support for the other functions. You may, for instance, need to change the key bindings (some of them are OS X specific) but cmd+d does the pair-tag selections for me.
This is a pretty sweet tool.
Also, if you are a rubyist, you may want to check out Frank (sudo gem install frank) – it let’s you do similar static build magic, and even gives you lorem content (images, text, etc).
Manu Parashar
July 6th, 2010 12:18 pmThis is awesome!! Pretty Cool
a77icu5
July 8th, 2010 2:46 amCool !!!
This should be a Code Lobster plug-in =(
Hiren Mehta
July 20th, 2010 2:32 amCool coding for html but where is the info on css code using zen coding. please let me know.
Usable Bytes
August 17th, 2010 8:24 pmHTML/CSS/JavaScript aren’t meant to be coded by machines. You need a smarter race for that.
chichibek
October 20th, 2010 4:13 pmgracias utilisimo esta en mis top 5
John Hu
October 24th, 2010 6:03 pmHow to Key Bindings with Zen Coding for Notepad++ ?
Lorenzo S.
October 26th, 2010 1:57 amBrand new plugin for NetBeans! Full support to Expand Abbreviation!
http://github.com/lorenzos/ZenCodingNetBeansPlugin#readme
Fabrizio
October 30th, 2010 12:33 amThank you very much for sharing this indispensable tool. What a pleasure to write html now !!!
Fabrizio
November 1st, 2010 1:06 amI try this week end to create new abbreviations and snippets in the Zend codding.js file. It work very well. After that I try to add no xml outup. For example : div>p>php where the php abbreviation is ‘php’: ‘<?php ?>’. This doesnt work, I have output <php />.
I would like to know if there is a way no have a no xml output ? May be you try it ? The idea it’s to you use zen coding for common html/php template or for jquery script. For example script>p.test>click give the script tag and $(‘p.test’).click(function(){ … }) , or p>echo give <p><?php echo ?><p/>.
Thank you !!
DengBo
January 11th, 2011 6:27 pmVeryGood!
非常好用啊,强烈推荐,顶!
Ardi
January 29th, 2011 11:26 pmIts great but i still love Emacs with yasnippet or auto-complete
Loï Jérôme
January 31st, 2011 2:26 pmI had two major changes in my lifespan, the first time I meet “Lucy in the sky with diamonds” and the first time I used zen coding, I really don’t know how to thank you !!!
Degenatron
February 9th, 2011 9:04 amI think some are missing the point of this. Zen Coding will never replace manual coding. It’s simply a helper. In the same way as you use copy and paste, you’ll only use Zen Coding when you need it. Who copies and pastes every line of HTML they write?
Anyone who makes a lot of HTML templates with navbars, tables with product specifications and so on will find this immensely helpful.
I’ve got it on Notepad++ and while I don’t use it all the time but when I do use it it’s a joy to be able to create a lot of HTML within a few seconds and the IDs and class names already in place.
Vale
April 9th, 2011 1:44 amFantastic! I’m using it in Espresso for Mac Os X, great time saver.
The music in the video is great.
Bart Burkhardt
April 20th, 2011 12:58 amIs {this is a test} the way to specify the innerhtml of an element? it works as shown below
div#box>div.sub{Item $}*3
Dave Everitt
June 5th, 2011 1:42 amI simply can’t get Zen Coding to work in either Coda (1.7) or TextMate (1.5.10) (with Python 2.6) on OS X 10.4.11 – nothing happens in Coda, and TextMate throws this:
Traceback (most recent call last):
File “/Users/deveritt/Library/Application Support/TextMate/Pristine Copy/Bundles/Zen Coding.tmbundle/Support/expand_abbreviation.py”, line 7, in ?
import zencoding
File “/Users/deveritt/Library/Application Support/TextMate/Pristine Copy/Bundles/Zen Coding.tmbundle/Support/zencoding/__init__.py”, line 1, in ?
import utils
File “/Users/deveritt/Library/Application Support/TextMate/Pristine Copy/Bundles/Zen Coding.tmbundle/Support/zencoding/utils.py”, line 71
return text[pos] if pos < len(text) else ''
^
SyntaxError: invalid syntax
I can't find any 'minimum system' information, and the various pages on the project (Google Code, the forked project on GitHub – 'report an issue' throws a 404!, and the MacRabbit page) have inconsistent info and links to deprecated versions. Finally (reading issues on Google Code) the TextMate bundle shortcut defaults clash with the existing HTML bundle, but to fix this you'd have to fork'n'fix, or edit them in TextMate. Installing TextMate bundles from the CL also fails, as there's nothing listed in the usual bundle repos. None of this facilitates 'ease of use' or 'swift installation', so – although I really wanted this in TextMate and Coda – it seems the will beyond Expresso is no longer there for the developer, who is now on the Expresso team.
thomas
June 11th, 2011 6:45 pmdeprecated.
No support for HTML5 tags
Sagive
August 8th, 2011 5:14 pmi LoOOOVe it!! its going to save me so much time :)
Thierry
August 12th, 2011 8:39 amZen code means as unobtrusive typing as possible. Zen coding brings you exactly that.
It’s a typing tool not a coding tool. Code your way.
Thanks for that Sergey
- T -
Michael
September 4th, 2011 5:47 pmThis is a very very helpful tool. I wouldn’t use it for all my coding, but it’s very intuitive, I picked it up really fast, and for some things, this would save me tons of time. Time is very important to me, and that’s why this tool works.
Thanks (Using Zen Coding on Notepad++)
Pali Madra
September 12th, 2011 2:06 amA great tool. Too bad I discovered it now.
@Thomas things are improving. Let me quote the developer from his post
“It is certainly possible to develop support for HTML 5 include all the features of CSS 3, to realize an even greater number required daily patterns. And this is done, but in the second turn. First of all, I plan to seriously change the way a set of HTML-code and method of storage library of templates in the packages. And of course to improve the consistency and intuitiveness of abbreviations and shortcuts”
So wait patiently and you will get the good news soon.
Cheers
joshua
September 16th, 2011 11:15 amlove it!! thanks!
Porfirio Dorval
November 7th, 2011 12:02 pmnaturally like your web-site however you have to test the spelling on quite a few of your posts. A number of them are rife with spelling issues and I find it very bothersome to tell the reality then again I will certainly come again again.
gigaimage
November 16th, 2011 1:27 amIs there any way to collapse (or undo expand) the code? or is it tool specific implementation?
let’s say… it takes few trials to come to this final structure for wrapping with abbreviation : div#header>ul#navigation>li.times$*>a>span
I can always do Ctr Z in notepad++, but it’s just one timer revert, anything more robust?
Rahul Talar
November 18th, 2011 6:02 pmThanks Sergey
After started using zen coding, my html coding time is reduced by 50%.
Graham
November 21st, 2011 1:19 pmNice tool. I was wondering about adding snippets to it that zen can not find. Is this possible? Thanks.
Dreamweaver
January 26th, 2012 12:15 amRather than learning another syntax, why not just use a code generator like Dreamweaver? I don’t have to memorize all this stuff, and still faster HTML. I don’t get it?
seo
January 31st, 2012 9:34 amGood day! This is my first comment here so I just wanted to give a quick shout out and tell you I genuinely enjoy reading through your blog posts. Can you suggest any other blogs/websites/forums that deal with the same subjects? Thanks for your time!
canciller
February 2nd, 2012 9:51 amAwesome tool. Using on new project.
Thanks for post this.