├── .babelrc ├── test ├── mock_image.jpg ├── index.js ├── imageDims.test.js └── templates.test.js ├── test.html ├── .travis.yml ├── .npmignore ├── .gitignore ├── src ├── templates.js ├── ampl.js └── imageDims.js ├── package.json ├── README.md └── LICENSE /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /test/mock_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/ampl/HEAD/test/mock_image.jpg -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('./templates.test.js'); 2 | require('./imageDims.test.js'); 3 | -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- 1 | hey 2 |
3 |#h1
4 | 5 | 6 |