Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 324650 - Add support for Zen Coding (without the need for Eclipse Monkey)
Summary: Add support for Zen Coding (without the need for Eclipse Monkey)
Status: NEW
Alias: None
Product: WTP Source Editing
Classification: WebTools
Component: wst.html (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: wst.html CLA
QA Contact: Nick Sandonato CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-09-07 08:53 EDT by Glen A. CLA
Modified: 2010-09-07 08:53 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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