From c2be1fd659bd285b06518b425fd30da75eb9ddde Mon Sep 17 00:00:00 2001 From: Dominic Muller Date: Tue, 4 Apr 2017 12:34:28 -0700 Subject: [PATCH] added adapter for Crikey templating engine --- README.md | 1 + src/crikey.cr | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 src/crikey.cr diff --git a/README.md b/README.md index a9622a7..4327298 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ Simplify developers' lives by abstracting template rendering for multiple templa | Mustache | .mustache | [crustache](https://github.com/MakeNowJust/crustache) | [@MakeNowJust](https://github.com/MakeNowJust) | | Slang | .slang | [slang](https://github.com/jeromegn/slang) | [@jeromegn](https://github.com/jeromegn) | | Temel | .temel | [temel](https://github.com/f/temel) | [@f](https://github.com/f) | +| Crikey | .crikey | [crikey](https://github.com/domgetter/crikey) | [@domgetter](https://github.com/domgetter) | See also: [Registering your own template engine](#registering-your-own-template-engine). diff --git a/src/crikey.cr b/src/crikey.cr new file mode 100644 index 0000000..f20b9e2 --- /dev/null +++ b/src/crikey.cr @@ -0,0 +1,4 @@ +require "./kilt" +require "crikey" + +Kilt.register_engine "crikey", Crikey.embed