├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── examples ├── env.yaml ├── favourites.py ├── footer.md ├── gitprofile.md ├── simple.md └── use-scripts.md ├── src └── Tempered │ ├── Options.hs │ ├── Parser.hs │ └── Template.hs ├── stack.yaml ├── tempered.cabal ├── test └── Spec.hs └── tools ├── attach-binary.sh ├── install-ghr.sh └── install-stack.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /.stack-work 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/app/Main.hs -------------------------------------------------------------------------------- /examples/env.yaml: -------------------------------------------------------------------------------- 1 | DATE: "{{ date +'%B %d, %Y' }}" 2 | TITLE: Basic Templating 3 | -------------------------------------------------------------------------------- /examples/favourites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/examples/favourites.py -------------------------------------------------------------------------------- /examples/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/examples/footer.md -------------------------------------------------------------------------------- /examples/gitprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/examples/gitprofile.md -------------------------------------------------------------------------------- /examples/simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/examples/simple.md -------------------------------------------------------------------------------- /examples/use-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/examples/use-scripts.md -------------------------------------------------------------------------------- /src/Tempered/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/src/Tempered/Options.hs -------------------------------------------------------------------------------- /src/Tempered/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/src/Tempered/Parser.hs -------------------------------------------------------------------------------- /src/Tempered/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/src/Tempered/Template.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/stack.yaml -------------------------------------------------------------------------------- /tempered.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/tempered.cabal -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/test/Spec.hs -------------------------------------------------------------------------------- /tools/attach-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/tools/attach-binary.sh -------------------------------------------------------------------------------- /tools/install-ghr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/tools/install-ghr.sh -------------------------------------------------------------------------------- /tools/install-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/tempered/HEAD/tools/install-stack.sh --------------------------------------------------------------------------------