├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── events └── example-event.json ├── fonts ├── NotoSansSC-Regular.ttf ├── Roboto-Bold.ttf ├── Roboto-Regular.ttf └── fonts.conf ├── index.js ├── lib ├── libX11.so.6 ├── libXau.so.6 ├── libXext.so.6 ├── libXrender.so.1 ├── libexpat.so.1 ├── libfontconfig.so.1 ├── libfreetype.so.6 ├── libjpeg.so.62 ├── libpng15.so.15 ├── libxcb.so.1 └── wkhtmltopdf ├── package.json ├── template.yml └── utils ├── error.js └── wkhtmltopdf.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | node_modules 4 | jspm_packages 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/README.md -------------------------------------------------------------------------------- /events/example-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/events/example-event.json -------------------------------------------------------------------------------- /fonts/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/fonts/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/fonts/fonts.conf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/index.js -------------------------------------------------------------------------------- /lib/libX11.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libX11.so.6 -------------------------------------------------------------------------------- /lib/libXau.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libXau.so.6 -------------------------------------------------------------------------------- /lib/libXext.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libXext.so.6 -------------------------------------------------------------------------------- /lib/libXrender.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libXrender.so.1 -------------------------------------------------------------------------------- /lib/libexpat.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libexpat.so.1 -------------------------------------------------------------------------------- /lib/libfontconfig.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libfontconfig.so.1 -------------------------------------------------------------------------------- /lib/libfreetype.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libfreetype.so.6 -------------------------------------------------------------------------------- /lib/libjpeg.so.62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libjpeg.so.62 -------------------------------------------------------------------------------- /lib/libpng15.so.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libpng15.so.15 -------------------------------------------------------------------------------- /lib/libxcb.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/libxcb.so.1 -------------------------------------------------------------------------------- /lib/wkhtmltopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/lib/wkhtmltopdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/package.json -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/template.yml -------------------------------------------------------------------------------- /utils/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/utils/error.js -------------------------------------------------------------------------------- /utils/wkhtmltopdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/zeplin-html-to-pdf/HEAD/utils/wkhtmltopdf.js --------------------------------------------------------------------------------