"Zen Coding is a set of plug-ins for text editors that allow for high-speed coding and editing in HTML, XML, XSL, and other structured code formats via content assist."
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
table>thead>(tr*3>th)+tbody(tr*3>td)
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
span
+
TAB
<span></span>
span.title
+ TAB
<span class="title"></span>
span#awesome.title
+ TAB
<span id="awesome" class="title"></span>
form[method=post]
+ TAB
<form method="post" action=""></form>
.content
+ TAB
<div class="content">
div#product>h1.title
+ TAB
<div id="product">
<h1 class="title"></h1>
</div>
div.first+div.second
+ TAB
<div class="first"></div>
<div class="second"></div>
li*4
+ TAB
<li></li>
<li></li>
<li></li>
<li></li>
ul>(li.menu-item*3)>span.title
+ TAB
<ul>
<li class="menu-item"><span class="title"></span></li> <li class="menu-item"><span class="title"></span></li> <li class="menu-item"><span class="title"></span></li> </ul>
table>(thead>tr>th*3)+(tbody>tr*2>td*3)+(tfoot>tr>td[colspan=2]+td)
+ TAB
. . .
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td></td>
</tr>
</tfoot>
</table>
ol>li.item$$*3
+ TAB
<ol>
<li class="item01"></li>
<li class="item02"></li>
<li class="item03"></li>
</ol>
a.back[href="/"]{Click here to continue}
+ TAB
<a class="back" href="/">Click here to continue</a>
ul>li*3|e
+ TAB
<ul>
<li></li>
<li></li>
<li></li>
</ul>
h1#title+.body|c
+ TAB
<!-- #title -->
<h1 id="title"></h1>
<!-- /#title --><!-- .body -->
<div class="body"></div>
<!-- /.body -->
<div class="control-group">
<label class="control-label" for="$ID$">$LABEL$</label>
<div class="controls">
<input type="text" id="$ID$" name="$ID$">
</div>
</div>
return $END$;
<div class="wrapper">$SELECTION$</div>