├── .gitignore ├── bin └── html2coffeekup ├── lib ├── cli.coffee └── convert.coffee ├── package.json ├── readme.md └── test ├── simple.coffee └── simple.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bin/html2coffeekup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/bin/html2coffeekup -------------------------------------------------------------------------------- /lib/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/lib/cli.coffee -------------------------------------------------------------------------------- /lib/convert.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/lib/convert.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/readme.md -------------------------------------------------------------------------------- /test/simple.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/test/simple.coffee -------------------------------------------------------------------------------- /test/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonbloom/html2coffeekup/HEAD/test/simple.html --------------------------------------------------------------------------------