http://www.johnpapa.net/zen-coding-in-visual-studio-2012

Zen Coding is a faster way to write HTML using a CSS style selector syntax, and you can now use Zen Coding in Visual Studio via the Web Essentials 2012 plug in (v1.7).  Zen Coding was introduced by Sergey Chikuyonok in 2009 (according to Smashing Magazine) and has been updated over time to become a great way to write monotonous HTML much more efficiently.
 
Special thanks  to Mads Kristensen and his team at Microsoft for adding Zen Coding to Visual Studio 2012 via Web Essentials 2012 (along with many other great features).

Quick Reference

Here is a quick list of the Zen Coding features that are now supported in Visual Studio 2012 via the Web Essentials 2012 plug in

  • # creates an id attribute
  • . creates a class attribute
  • [ ] creates a custom attribute
  • > creates a child element
  • + creates a sibling element
  • ^ climbs up
  • * is element multiplication. This creates the same thing n number of times
  • $ is replaced with an incremental number
  • $$ is used for numbers with padding
  • { } creates text in an element
What can you do? Here is an example:
  1. <!-- Type this -->
  2. ul[data-bind="foreach:customers"]>li*4>span{Caption $$}+input[type=text data-bind="value:$$"]
  3. <!-- Creates this -->
  4. <uldata-bind="foreach:customers">
  5. <li><span>Caption 01</span><inputtype="text"value=""data-bind="value:01"/></li>
  6. <li><span>Caption 02</span><inputtype="text"value=""data-bind="value:02"/></li>
  7. <li><span>Caption 03</span><inputtype="text"value=""data-bind="value:03"/></li>
  8. <li><span>Caption 04</span><inputtype="text"value=""data-bind="value:04"/></li>
  9. </ul>
Let’s take a closer look at the different symbols used

ID and Class Attributes: # and .

You can create an element and assign it an id or class attribute using CSS style syntax.
  1. <!-- Type this -->
  2. div#contentRegion.address
  3. <!-- Creates this -->
  4. <divid="contentRegion"class="address"></div>

Custom Attributes: [ ]

You can create any attribute the square bracket syntax.
  1. <!-- Type this -->
  2. div[title]
  3. <!-- Creates this -->
  4. <divtitle=""></div>
Or create multiple attributes and fill in values
  1. <!-- Type this -->
  2. input[placeholder="Name" type="text"]
  3. <!-- Creates this -->
  4. <inputtype="text"value=""placeholder="Name"/>

Child Elements: >

Create an element and then a child element inside of it. In this example I create a div with the id=menu that contains a span with a class="item" and a blank title attribute
  1. <!-- Type this -->
  2. div#menu>span.item[title]
  3. <!-- Creates this -->
  4. <divid="menu">
  5. <spanclass="item"title=""></span>
  6. </div>

Sibling Elements: +

You can create a sibling element easily too.
  1. <!-- Type this -->
  2. footer>div>a+input
  3. <!-- Creates this -->
  4. <footer>
  5. <div>
  6. <ahref=""></a>
  7. <inputtypevalue=""/>
  8. </div>
  9. </footer>

Climbing Elements: ^

The > operator descends into element hierarchy while the ^ climbs up the hierarchy. You can also climb multiple levels. For example: use 1 ^ to climb 1 level or use 4 ^ to climb 4 levels.
  1. <!-- Type this -->
  2. footer>div>a+input^^p
  3. <!-- Creates this -->
  4. <footer>
  5. <div>
  6. <ahref=""></a>
  7. <inputtypevalue=""/>
  8. </div>
  9. <p></p>
  10. </footer>

Multiplication: *

Create n number of elements
  1. <!-- Type this -->
  2. ul>li*4>span
  3. <!-- Creates this -->
  4. <ul>
  5. <li><span></span></li>
  6. <li><span></span></li>
  7. <li><span></span></li>
  8. <li><span></span></li>
  9. </ul>

Item Numbering: $

When using the multiplication to create n number of elements, you can add an incremental number to them using the $. Notice that using multiple $ operators (ex: $$) creates pads the numbers with 0′s.
  1. <!-- Type this -->
  2. section>article.item$$*4
  3. <!-- Creates this -->
  4. <section>
  5. <articleclass="item01"></article>
  6. <articleclass="item02"></article>
  7. <articleclass="item03"></article>
  8. <articleclass="item04"></article>
  9. </section>

Text: } {

You can enter text values inside of elements, without changing the parent context.
  1. <!-- Type this -->
  2. ul>li*4>span{Caption $$}
  3. <!-- Creates this -->
  4. <ul>
  5. <li><span>Caption 01</span></li>
  6. <li><span>Caption 02</span></li>
  7. <li><span>Caption 03</span></li>
  8. <li><span>Caption 04</span></li>
  9. </ul>
This does not change the parent context, so when specifying the sibling to follow the text, the sibling element will actually follow the element prior to the text. That’s why the example below creates an anchor tag next to the span tag.
  1. <!-- Type this -->
  2. ul>li*4>span{Caption $$}+a{click me}
  3. <!-- Creates this -->
  4. <ul>
  5. <li><span>Caption 01</span><ahref="">click me</a></li>
  6. <li><span>Caption 02</span><ahref="">click me</a></li>
  7. <li><span>Caption 03</span><ahref="">click me</a></li>
  8. <li><span>Caption 04</span><ahref="">click me</a></li>
  9. </ul>

Combining Them all

You can combine multiple features together which allows you to write some pretty cool HTML much faster. You can even use this to create some Knockout.js bindings for templates, and then just change the property names.
  1. <!-- Type this -->
  2. section[data-bind="foreach:customers"]>div*4>input[type="text" data-bind="text:$$"]
  3. <!-- Creates this -->
  4. <sectiondata-bind="foreach:customers">
  5. <div>
  6. <inputtype="text"value=""data-bind="text:01"/>
  7. </div>
  8. <div>
  9. <inputtype="text"value=""data-bind="text:02"/>
  10. </div>
  11. <div>
  12. <inputtype="text"value=""data-bind="text:03"/>
  13. </div>
  14. <div>
  15. <inputtype="text"value=""data-bind="text:04"/>
  16. </div>
  17. </section>

Grouping: ( )

Grouping is a powerful feature of Zen Coding that allows you to create complex expressions. It is not yet in Web Essentials 2012, but I assume it will come in the near future. If it does arrive, you would be able to create entire sections of a DOM very easily.
  1. <!-- Type this -->
  2. div>(header>div)+section>(ul>li*2>a)+footer>(div>span)
  3. <!-- WOULD create this (not yet supported in Web Essentials 2012)-->
  4. <div>
  5. <header>
  6. <div></div>
  7. </header>
  8. <section>
  9. <ul>
  10. <li><ahref=""></a></li>
  11. <li><ahref=""></a></li>
  12. </ul>
  13. </section>
  14. <footer>
  15. <div>
  16. <span></span>
  17. </div>
  18. </footer>
  19. </div>
As you can see, this would make it quite simple to create large sections of HTML with just a few keystrokes.

Lorem Ipsum Generator

(Added Dec 5, 2012)

You can now generate Lorem Ipsum directly in the HTML editor. Type “lorem” and hit TAB and a 30 word Lorem Ipsum text is inserted. Type “lorem10″ and a 10 word Lorem Ipsum text is inserted.

ul>li*5>lorem3

References

Zen Coding in Visual Studio 2012的更多相关文章

  1. 如何在Visual Studio 2012中发布Web应用程序时自动混淆Javascript

    同Java..NET实现的应用程序类似,Javascript编写的应用程序也面临一个同样的问题:源代码的保护.尽管对大多数Javascript应用公开源代码不算是很严重的问题,但是对于某些开发者来说, ...

  2. 在Visual Studio 2012中使用VMSDK开发领域特定语言(二)

    本文为<在Visual Studio 2012中使用VMSDK开发领域特定语言>专题文章的第二部分,在这部分内容中,将以实际应用为例,介绍开发DSL的主要步骤,包括设计.定制.调试.发布以 ...

  3. 在Visual Studio 2012中使用VMSDK开发领域特定语言(一)

    前言 本专题主要介绍在Visual Studio 2012中使用Visualization & Modeling SDK进行领域特定语言(DSL)的开发,包括两个部分的内容.在第一部分中,将对 ...

  4. Visual Studio 2012 trial version

    Update: vs2012.5.iso http://download.microsoft.com/download/9/F/1/9F1DEA0F-97CC-4CC4-9B4D-0DB45B8261 ...

  5. 在Visual Studio 2012 Blue theme下使用Dark theme的文本编辑器颜色设置

    Visual Studio 2012 默认提供了3种color theme: blue,light,和dark.其中dark的文本编辑器颜色设定很爽,可是整个菜单项加上一些小的窗口如Find Resu ...

  6. 分享10条Visual Studio 2012的开发使用技巧

    使用Visual Studio 2012有一段时间了,并不是追赶潮流,而是被逼迫无可奈何.客户要求的ASP.NET MVC 4的项目,要用.NET 4.5来运行.经过一段时间的摸索,得到一点经验和体会 ...

  7. Visual Studio 2012 Update 4 RC 启动调试失败解决方案

    以下解决办法适用于任何Visual Studio开发环境,及Windows NT 6.1以上系统. 系统:Windows 8.1 Enterprise x64 RTM 开发环境:Visual Stud ...

  8. SQL Server Data Tools – Business Intelligence for Visual Studio 2012安装时提示“The CPU architecture....”的解决方法

    SQL Server Data Tools – Business Intelligence for Visual Studio 2012,一个很强大的工具,下载地址:http://www.micros ...

  9. Visual Studio 2012+jQuery-1.7.1

    今天用Visual Studio 2012开发一个网站项目,在集成jqplot图表控件并进行调试的时候(使用的是MVC4框架),加载网页绘制图表的时候总是报错(提示$.jqplot.barRender ...

随机推荐

  1. uva :10123 - No Tipping(dfs + 几何力矩 )

    option=com_onlinejudge&Itemid=8&page=show_problem&category=109&problem=1064&mosm ...

  2. Android_app项目开发步骤总结

    做了几个android企业应用项目后,总结了项目的基本开发步骤.希望可以交流. 一 应用规划:      ※确定功能.      ※必须的界面及界面跳转的流程.      ※须要的数据及数据的来源及格 ...

  3. 《深入理解OSGi:Equinox原理、应用与最佳实践》笔记_1_运行最简单的bundlehelloworld

    <深入理解OSGi:Equinox原理.应用与最佳实践>笔记_1_运行最简单的bundlehelloworld 买了周大大的OSGI的书看 先前完全没有基础 就靠这本书看看学学 顺便记一些 ...

  4. XSS学习笔记(一个)-点击劫持

    所谓XSS这个场景被触发XSS地方,在大多数情况下,攻击者被嵌入在网页中(问题)该恶意脚本(Cross site Scripting),这里的攻击始终触发浏览器端,攻击的者的目的.一般都是获取用户的C ...

  5. c++ 按行读取txt文本

    CStdioFile 类的声明保存在 afx.h 头文件中. CStdioFile 类继承自 CFile 类, CStdioFile 对象表示一个用运行时的函数 fopen 打开的 c 运行时的流式文 ...

  6. jquery 弹出登陆框,简单易懂!修改密码效果代码

    在网上找了一大堆,看的眼花瞭乱,还是研究原码,自已搞出来了! ui原地址:http://jqueryui.com/dialog/#modal-form 可以把js,css下载到本地,要不然不联网的话, ...

  7. ACdream原创群赛(18)のAK's dream题解

    只做了4题水题ADGI A题需要注意的就是“[...]”的输出了,何时输出,何时不输出. #include <stdio.h> int main() { int n, cur, d; ; ...

  8. 国庆去学校的国际象棋(Latex)

    国庆节去学棋与朋友. 看国外的网站更有趣的事情. 很快打下来. 首先效应: 嘿嘿  代码来了哟: \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc ...

  9. HDU4960Another OCD Patient(间隙dp,后座DP)

    Another OCD Patient Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Ot ...

  10. SSH三作品的框架和流程

    Hibernate工作的,为什么? 原理: 1.通过Configuration().configure();读取并解析hibernate.cfg.xml配置文件 2.由hibernate.cfg.xm ...