Package Exports
- emel
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (emel) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
emel
Create DOM elements with Emmet
Installation
npm install emelUsage
You can use any emmet abbreviation.
const emel = require("emel");
const emmetString = "table>thead>tr>th{col1}+th{col2}^^tbody>(tr>td[colspan=2]{2 col width})+tr>td.col${1 col width}*2";
const element = emel(emmetString); // TABLE DOM element