Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 324650

Summary: Add support for Zen Coding (without the need for Eclipse Monkey)
Product: [WebTools] WTP Source Editing Reporter: Glen A. <glen.84>
Component: wst.htmlAssignee: wst.html <wst.html-inbox>
Status: NEW --- QA Contact: Nick Sandonato <nsand.dev>
Severity: enhancement    
Priority: P3 CC: thatnitind
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description Glen A. CLA 2010-09-07 08:53:41 EDT
Build Identifier: I20100608-0911

See https://code.google.com/p/zen-coding/

It would be nice if the resulting code could be template-like, for example:

ul#nav>li*2

Would expand to:

<ul id="nav">
    <li>${li$1}</li>
    <li>${li$2}</li>
</ul>
${cursor}

A CSS example:

@f

Would expand to:

@font-face {                                
    font-family: ${font-family};
    src: url(${url});
}

${cursor}

Reproducible: Always