Quantcast
Channel: Hacker News
Viewing all articles
Browse latest Browse all 10943

Emmet v1.0 is out

$
0
0

Comments:"Emmet v1.0 is out"

URL:http://emmet.io/blog/emmet-v1/


I’m happy to announce that after more than six months of development the Emmet (formerly Zen Coding) v1.0 is officially released. Maybe you’ve already been using Emmet for months, but only now, after numerous bug fixes and improvements, I can say that it works as expected.

What has been changed since the Zen Coding?

At first, the project name has been changed. “Emmet” is gonna be brand name for new tools and not all of them will be related to “coding”.

Secondly, the project has received official web-site and extensive documentation about all available features.

Thirdly, improved CSS support: you can write property values directly in the abbreviation, create gradients and vendor-prefixed properties. Also, user’s reports about lengthy and hard-to-remember CSS abbreviations were considered and now Emmet utilizes fuzzy search for CSS abbreviations.

Here is a list of other significant changes:

  • The project’s code base was rewritten from scratch. It has become more modular and extensible.
  • The Python version was discarded. I found it quite difficult to maintain two versions of the core. Instead, Emmet uses bridges for Python, Objective-C and Java, which allow to fix bugs and add new features for all platforms very quickly.
  • Improved implicit tag name resolver. Previously, if you tried to expand abbreviations like .item, you could receive either <div class="item">, or <span class="item">, depending on the parent tag. The resolver is now looking at a parent tag’s name and can produce, for example, <li>, <td>, <option>.
  • Extensions support. Now, to add a new abbreviation or customize the output format, there’s no need to dig into the plugin code, you just have to create simple JSON files in a special folder.
  • “Lorem Ipsum” generator. Previously, to get a “dummy” text for the web-site, you had to use third-party services to generate “dummy” text and then format it. Now you can get it right in your text editor, and you can control the number of generated words by simply appending a number after the abbreviation. Moreover, the generator uses all Emmet abbreviations features, allowing you to add attributes to the generated elements and control the number of created blocks.
  • New ^ operator. Despite the fact that there is a more powerful grouping operator, often it takes too much time to update abbreviation with braces to output the next element one level up. Now it is sufficient to write the ^ operator to output next element one level up the tree.

What’s new since beta release

  • You can control numbering base and direction with @ modifier. For example, ul>li.item$@-*5 will number items in descending order (e.g. from 5 to 1).
  • To automatically align expanded CSS properties with vendor prefixes, set css.alignVendor preference to true.
  • In most editors, “Update Image Size” will also work for remote images (like http://example.com/image.png).
  • Fuzzy search for CSS abbreviations.
  • Embedded color values in CSS abbreviations.
  • Espresso, Coda and TextMate plugins are automatically updated via Sparkle.
  • Notepad++ plugin now uses Python Script base (thanks to Dave Brotherstone) which is more stable and feature-rich than previous one. Also, it’s available in Plugin Manager.

The project source code and plug-ins are available in special repository. If you find any errors or have suggestions for improvement, please let me know.

Please enable JavaScript to view the comments powered by Disqus.comments powered by

Viewing all articles
Browse latest Browse all 10943

Trending Articles