├── .eslintrc.json ├── .gitignore ├── LICENSE.txt ├── Makefile ├── Makefile_Pandoc ├── README-SAR.md ├── README.md ├── example ├── .gitignore ├── Makefile ├── src │ ├── child-process-promise.js │ ├── index.js │ └── s3-util.js └── template.yaml └── template.yaml /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | cache 3 | result 4 | build 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GPL v2, see https://github.com/jgm/pandoc/blob/master/COPYRIGHT 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile_Pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/Makefile_Pandoc -------------------------------------------------------------------------------- /README-SAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/README-SAR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | output.yaml 2 | -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/src/child-process-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/example/src/child-process-promise.js -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/src/s3-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/example/src/s3-util.js -------------------------------------------------------------------------------- /example/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/example/template.yaml -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesspub/pandoc-aws-lambda-binary/HEAD/template.yaml --------------------------------------------------------------------------------