├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── example ├── letter.md ├── letter.pdf ├── letterhead.pdf └── signature.pdf └── template-letter.tex /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/README.md -------------------------------------------------------------------------------- /example/letter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/example/letter.md -------------------------------------------------------------------------------- /example/letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/example/letter.pdf -------------------------------------------------------------------------------- /example/letterhead.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/example/letterhead.pdf -------------------------------------------------------------------------------- /example/signature.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/example/signature.pdf -------------------------------------------------------------------------------- /template-letter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronwolen/pandoc-letter/HEAD/template-letter.tex --------------------------------------------------------------------------------