我记得几个月前读过一篇关于
HTML的简写版本或扩展的文章.它的目的是通过删除结束标记使HTML代码更加简洁,并且它可能允许某种循环.我现在想用它,但我似乎无法记住它的名字.
在线搜索,我找到了Haml,但是Haml语法看起来不像我在文章中记得的那个例子.该文章的语法使用了直角括号,它是缩进的替代品.
这是什么语言?
解决方法
更新
Zen Coding已更名为Emmet并拥有其codebase at GitHub.
我想你正在寻找可以在http://code.google.com/p/zen-coding/找到的Zen Coding.
Zen Coding is an editor plugin for
high-speed HTML,XML,XSL (or any
other structured code format) coding
and editing. The core of this plugin
is a powerful abbreviation engine
which allows you to expand
expressions—similar to CSS
selectors—into HTML code.
例
div#page> div.logo ul#navigation> li * 5> a
扩展到
<div id="page"> <div class="logo"></div> <ul id="navigation"> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> </ul> </div>