I have tried the ReSharper Power toy Zen Coding and found it can only generate code in one line. Can it generate formatted code?
For example, I type in
ul>li*3
It generates:
<ul><li></li><li></li><li></li></ul>
I want it formatted as:
<ul>
<li></li>
<li></li>
<li></li>
</ul>
There is also another Zen Coding Visual Studio plugin available at http://tech.einaregilsson.com/2009/11/12/zen-coding-visual-studio-addin/ which inserts formatted HTML by default.