├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets └── demo.gif ├── deploy.sh ├── lib ├── EmmetEditor.js └── main.js ├── package.json ├── webpack.config.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/deploy.sh -------------------------------------------------------------------------------- /lib/EmmetEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/lib/EmmetEditor.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umireon/coteditor-emmet/HEAD/yarn.lock --------------------------------------------------------------------------------