Smashing Magazine
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.
[Offtopic: by the way, did you already get your copy of the Smashing Book?]
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)
Sergey Chikuyonok is a Russian front-end web-developer and writer with a big passion on optimization: from images and JavaScript effects to working process and time-savings on coding.
- 253 Comments
- 1
- 2
November 21st, 2009 11:08 amI agree, this looks like sheer awesomesauce.
- 3
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
- 5
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.texterand.
Texter Bundle based on ZenHTML:
http://texterbundles.googlecode.com/files/ZenHTML.texter
- 5
- 2
- 6
November 21st, 2009 11:02 amlooks promising
thanks for yr hard work guys - 7
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
- 12
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- 13
November 25th, 2009 1:35 amah, that makes a lot of sense! so > starts a child element, and < moves up one level?
- 14
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….
- 13
- 15
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.
- 12
- 16
November 21st, 2009 11:18 amZen Coding is really nice! I use it for Coda and it is fast fast fast.
- 17
November 21st, 2009 11:22 amLooks really good, I’ll try with Aptana.
- 18
November 21st, 2009 11:25 amlooking good, got to try it out.. thanks SM
- 19
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)
- 20
November 21st, 2009 11:33 amIt sounds a bit confusing for me.
- 21
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.
- 22
November 21st, 2009 1:05 pmI agree.
- 23
November 21st, 2009 2:02 pmAgree.
- 24
November 22nd, 2009 7:13 amTotalu Agree
- 23
- 25
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. - 26
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.
- 27
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.
- 27
- 28
November 25th, 2009 3:47 amI agree, if u dont want 2 code look 4 another profession or become a graphic designer.
- 22
- 29
November 21st, 2009 11:42 amThanks, will definitely try it!
One very newbie question: how do you install this (using Coda & Espresso)? - 33
November 21st, 2009 11:56 amHOT! HOT! HOT!
- 34
November 21st, 2009 12:02 pmI’ll say after a week if this will reduce my coding time. Happy testing!
- 35
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
- 36
March 23rd, 2010 7:28 pmAlas, Chris’s version is broken for emacs inside a terminal, and gets more broked with each version.
- 36
- 37
November 21st, 2009 12:20 pmIn Russia code writes you!
- 38
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!
- 39
November 25th, 2009 1:37 amvim support would be awesome
- 40
December 2nd, 2009 3:48 amVim support in test – http://code.google.com/p/zen-coding/issues/detail?id=16
- 40
- 39
- 41
November 21st, 2009 12:27 pmkicking asses!!!!
- 42
November 21st, 2009 12:35 pmDarn, I had submitting this article in mind last week, yours however is more detailed.
- 43
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.
- 44
November 21st, 2009 5:31 pmI concur
- 45
May 1st, 2010 8:58 pmcreate a hundred divs in a row uniquely named in just Coda. Still easy? Zen solves that.
- 44
- 46
November 21st, 2009 12:36 pmWell done sir. This is pure awesome.
- 47
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
- 48
November 22nd, 2009 2:50 pmI totally agree..
- 49
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.
- 48
- 50
November 21st, 2009 12:40 pmHow to install it into Aptana 2?!? I going to install it for 4 hours and done nothing…
- 52
November 21st, 2009 12:43 pmI agree with simon r jones
I will stick with the old way of doing it by hand.
- 53
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.
- 54
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! :)
- 55
November 21st, 2009 12:58 pmZen coding looks nice! What is the music, is it Seba and Paradox? Awesome tune…
- 56
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.
- 57
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.)
- 58
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.
- 63
November 21st, 2009 1:11 pmHello! I’m new coding.
how do you install the plugin in aptana?
- 64
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.
- 64
- 65
November 21st, 2009 1:14 pmJames Padolsey has written a similar script called Satisfy:
http://github.com/jamespadolsey/satisfyIt has a jQuery plugin API, as well.
- 66
November 21st, 2009 2:03 pmThis is LOL
- 67
November 21st, 2009 2:14 pmIncredible, I will help me a lot. Thanks.
- 68
November 21st, 2009 2:55 pmOkay, this is pretty cool. Definitely going to try it out on my next project.
- 69
November 21st, 2009 3:02 pmWow, I’m going to give this a shot in Coda!
- 70
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.
- 71
November 21st, 2009 3:15 pmWhich is greater?
Time saved by using this?
Or time spent learning it?
That’s the essential question.
- 72
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.
- 72
- 73
November 21st, 2009 3:40 pmJust amazing; nothing to add.
- 74
November 21st, 2009 3:56 pmWhat is the editor that is being used in the demo?
- 75
November 21st, 2009 4:44 pmHe is using Espresso.
- 76
November 21st, 2009 5:20 pmIt’s Espresso on OSX.
- 75
- 77
November 21st, 2009 4:09 pmDon’t forget to rename the Espresso plugin file from .zip to .sugar :-)
- 78
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
- 79
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.
- 80
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.
- 81
November 21st, 2009 6:31 pmThis looks handy and fun. Will try it out. Thanks for creating
- 82
November 21st, 2009 7:05 pmMan, this is the future.
- 83
November 21st, 2009 8:03 pmThis is awesome work! Hope to see Notepad++ support soon!
- 84
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.
- 85
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
- 86
November 21st, 2009 8:45 pmThanks for sharing this resource. Have to learn some new things to work this out for me :)
- 87
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.
:)
- 88
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
- 89
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.
- 90
November 22nd, 2009 1:23 amThis looks very interesting. Definately going to give it a try. I’m all for speeding up development time.
- 91
November 22nd, 2009 1:44 amI’ll try with Aptana for sure. This looks so good !
- 92
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.
- 93
November 22nd, 2009 2:44 amLooks cool! I should write some speech macros for that! :)
- 94
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.
- 95
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
- 96
November 22nd, 2009 4:19 amI think the first time i saw this, was in GoLive (Adobe).
- 97
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?
- 98
March 21st, 2010 8:21 amOn CS4 —> Once the extension is installed,
GO TO Commands->Zend Coding->Expand AbbreviationOr simply type press (Ctrl) + (,) the zen line.
- 98
- 99
November 22nd, 2009 5:12 amAny chance to get this converted into a Komodo addon? That would rock!
- 100
November 22nd, 2009 8:10 amGreat work , this will save me alot of time .
and +1 for Komodo add-on
- 100
- 101
November 22nd, 2009 5:13 amnice idea, but totally not applicable in reality
- 102
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.
- 103
November 22nd, 2009 6:41 amJust tried it in Textmate, amazing!
- 104
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.
- 105
November 22nd, 2009 7:20 amThis post is really good
- 106
November 22nd, 2009 7:21 amgreat…ck ck ck…online tools its a cool and effisien
- 107
November 22nd, 2009 7:33 amThis looks really useful.
- 108
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 - 109
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
- 110
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 - 111
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?
- 112
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!
- 113
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
- 114
November 22nd, 2009 9:10 amThat is amazing!
- 115
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!
- 116
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- 117
November 24th, 2009 5:57 amAnd waste about 20 times more memory…
- 117
- 118
November 22nd, 2009 10:55 pmUse command in menu: Commands>Expand Abbreviation
- 116
- 119
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!
- 120
November 22nd, 2009 10:08 amДа, это очень круто, и к тому же бесплатно
- 121
November 22nd, 2009 11:13 amwow! powerful! +D
- 122
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.
- 123
November 22nd, 2009 11:23 amthank you verrymuch, that is amazing !
- 124
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.
- 125
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
- 126
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
- 126
- 127
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
- 128
November 22nd, 2009 1:44 pmCSS and HTML is a simple art form, why complicate it? No seriously, what is the benefit? Time?
- 129
November 22nd, 2009 3:01 pmYes, time!
I think it’s very useful. - 130
November 22nd, 2009 6:38 pmit saves EVEN MORE time.
- 129
- 131
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.
- 132
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
- 133
November 22nd, 2009 6:06 pmAmazing!!!
- 134
November 22nd, 2009 8:30 pmIm crying now…
- 135
November 22nd, 2009 8:34 pmAmazing post. wish it ahd support for dreamweaver
- 136
November 22nd, 2009 8:38 pmnice tutorial but little bit confusing for me
thanks - 137
November 22nd, 2009 8:55 pmThis looks really great, any chance for a Notepad++ plug in? :)
- 138
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!
- 139
November 22nd, 2009 9:56 pmhai Kamran,
How to install in APTANA?- 140
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-scriptI 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!
- 141
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
- 140
- 139
- 142
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.- 143
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?
- 143
- 144
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?
- 145
November 24th, 2009 1:29 pmAn advantage is that you can use natural CSS syntax.
- 146
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.
- 146
- 145
- 147
November 22nd, 2009 11:25 pmits really nice time saver. Dreamweaver extension is really useful.
- 148
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
- 149
November 22nd, 2009 11:58 pmHow to install in Pspad ?
- 150
November 23rd, 2009 12:28 amI have never worked with Zencart. But after reading this article. I find it easier now. Thanks.
- 151
November 23rd, 2009 12:44 amtextexpander works for me, tho this looks like a handy tool. Davai Sergey
- 152
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
- 153
November 23rd, 2009 1:15 amits a good idea, but I doubt many experienced developers will use it
- 154
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.
- 155
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.
- 156
November 24th, 2009 8:47 pmThank you so much
it’s working good can you tell me how to using CSS?
- 157
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
- 156
- 158
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.
- 159
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! ^^)
- 160
November 23rd, 2009 3:55 amEspresso Users…
Any ideas how to specify cursor postiton in espresso snippets?
- 161
November 23rd, 2009 4:10 amThis is brilliant!
- 162
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?
- 163
November 23rd, 2009 4:31 amI have the same problem in Coda. P always expands to padding.
- 163
- 165
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#footThis 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 ...' } } - 166
November 23rd, 2009 5:17 amAdding to the Notepad++ plugin request…. ;)
- 167
November 23rd, 2009 5:44 amNotepad++ and NetBeans =)
- 168
November 23rd, 2009 7:21 amThere is limited NetBeans support.
- 168
- 167
- 169
November 23rd, 2009 5:33 amThis is how most of us should be coding by now anyway, right?
- 170
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.
- 171
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?
- 171
- 172
November 23rd, 2009 6:36 amnotepad++ plugin :(
- 173
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??”
- 175
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/
- 176
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.
- 177
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.
- 178
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/”.
- 179
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…
- 180
November 23rd, 2009 8:54 amThis is sweet. I am playing with it in Aptana and loving it! Just wish I could use Coda!
- 181
November 23rd, 2009 9:43 amNotepad++ for the win!
- 182
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?
- 183
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!
- 184
November 25th, 2009 10:41 amAwesome! :)
It will be great, if there would be plugin for notepad++, yea… Please! :)
- 184
- 185
November 23rd, 2009 12:55 pmNOTEPAD++ support please! ill pay you for it :)
- 186
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!
- 187
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.
- 188
November 23rd, 2009 6:31 pmCtrl + Z works fine as an undo-shortcut, even in the demo (Firefox 3.5).
- 188
- 189
November 23rd, 2009 6:56 pm+1 for a Notepad++ plugin :)
- 190
November 23rd, 2009 7:50 pmI love to see this feature inside Notepad++ soon
- 191
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 - 192
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?
- 193
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… - 194
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.
- 195
November 24th, 2009 4:04 amWoot! But i need Eclipse support!
- 196
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!? ;-)
- 197
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 … ;)
- 197
- 198
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?
- 199
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 - 200
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 CSShttp://cakealot.com/zencoding/
thanks a lot to cakealot
- 201
November 25th, 2009 3:22 pmCan’t wait till this gets implemented in quanta!
- 202
November 26th, 2009 4:10 amThis looks great! Any ideas on how to install on Zend Studio for Eclipse 6.1?
- 203
November 26th, 2009 9:04 amThanks for your hard work! I’m excited to give this a try. . .
- 204
November 26th, 2009 11:55 amthx. a solution which i was looking for… for 2 years. finally i have found it. =]
- 205
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.
- 206
November 28th, 2009 6:26 amAwesome software! It looks so cozy.
I wanna this plugin runs on Notepad++!- 207
December 1st, 2009 2:01 amme too. :)
- 207
- 208
November 30th, 2009 3:29 pmJust using this with Coda. Is there anyway to change the shortcut keys for the expander?
- 209
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!
- 210
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 :) - 211
December 3rd, 2009 2:35 pmI am incredibly excited about this. Very cool stuff!
- 212
December 4th, 2009 2:38 pmwaiting for notepad++
- 213
December 23rd, 2009 1:32 amYeah, notepadd++ would be excellent.
- 213
- 214
December 11th, 2009 7:40 amDoes InType supported?
- 215
December 22nd, 2009 10:11 pmThe Zeus for Windows editor now also supports Zen Coding: http://www.zeusedit.com/forum/viewtopic.php?t=2876
- 216
December 26th, 2009 3:58 amHi guys,
I use Zend Studio 5.x. Is it available for this version? - 217
December 29th, 2009 3:16 pmI use it with sublime, it’s awesome.
Thanks Serguei ! - 218
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?
- 219
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
- 220
January 4th, 2010 7:26 amThis is really great. A time saver for sure! I’m using it with Aptana and I love it.
- 221
January 7th, 2010 8:07 pmHi,
what editor did you use in the demo video?
thanks
- 222
January 8th, 2010 4:52 amThis is truely remarkable! This is going to makes things easier!
- 223
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.
- 224
January 16th, 2010 7:46 amI can’t find the Coda version! Where is it?
- 225
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! - 226
January 18th, 2010 5:10 pmNM I found it. It’s Espresso. http://macrabbit.com/espresso/features/edit/
- 227
January 20th, 2010 2:19 amgreat… i m using it with topstyle and its definitely fast-fast-fastttt
- 228
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.
- 229
January 26th, 2010 5:07 pmis very very cool!!!
i like it´s new idea.
all more fast…. - 230
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) - 231
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…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:i.e. change the ${selected} to the selected text for each entry.
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
- 232
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
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…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:i.e.
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
- 233
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
- 234
February 17th, 2010 12:04 amA revolution…totally awesome
Peace love…respect
- 235
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
- 236
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 playany 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
- 237
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.zipMany thanks to all who made this possible.
Kind regards, mtness - 238
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
- 239
April 24th, 2010 7:47 amI risk to seem the layman, but nevertheless I will ask, whence it and who in general has written?
- 240
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.
- 241
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.
- 242
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.
- 243
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
- 244
May 12th, 2010 2:54 amDefinitely something to speed up the work with, i will try this with Aptana…
Thanks a lot
- 245
May 16th, 2010 8:07 pmVery nice tool! Awesome.
- 246
June 3rd, 2010 11:43 amHope one day we’ll get a new version of textmate that can offer full support!
- 247
June 3rd, 2010 12:37 pmBTW: great article!
- 248
June 10th, 2010 11:56 pmjust awesome.. way to code.. wish i knew it long before…
- 249
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).
- 250
July 6th, 2010 12:18 pmThis is awesome!! Pretty Cool
- 251
July 8th, 2010 2:46 amCool !!!
This should be a Code Lobster plug-in =(
- 252
July 20th, 2010 2:32 amCool coding for html but where is the info on css code using zen coding. please let me know.
- 253
August 17th, 2010 8:24 pmHTML/CSS/JavaScript aren’t meant to be coded by machines. You need a smarter race for that.
Leave a Comment
Make sure you enter the * required information where indicated. Please also rate the article as it will help us decide future content and posts. Comments are moderated – and rel="nofollow" is in use. Please no link dropping, no keywords or domains as names; do not spam, and do not advertise!
- New on SmashingMag: What Is The Worst Design or Programming Mistake You’ve Ever Made? - http://su.pr/2S9nTl (please RT)
- Full Page Image Gallery with jQuery - http://bit.ly/cxOQVn
- SEO: A Comprehensive Guide for Beginners - http://bit.ly/bNkLWU
- Spritebaker: parses CSS and returns a copy with all external media "baked" into it as Base64 encoded datsets - http://bit.ly/bOg9Sz
- UglifyJS: implements a general-purpose JavaScript parser/compressor/beautifier toolkit - http://bit.ly/bQftM6 (via @thinkvitamin)
- @crocodilebasti in the morning? :)
- @JogAmor well, probably the best option is to give up and let the body rest. There is not much one can do in this situation.
- @conversionation I will give it a try, thank you, my Moleskine is actually full of idea, so I am not sure if it will help :)
- @calinvalean yes, well, at least it doesn't happen too often.
- @mcgreenwood yes, offtopic, but it had to be said :-)



WOW! This is just awesome and revolutionary. Just added to my favorites. Will definitely read it more in depth later today.