crustache icon indicating copy to clipboard operation
crustache copied to clipboard

{{Mustache}} for Crystal :gem:

Results 3 crustache issues
Sort by recently updated
recently updated
newest added

shards.yml ```yml crustache: github: MakeNowJust/crustache version: ~> 2.4.3 ``` Error message: ``` - `crystal (~> 0.34, >= 0.34.0)` required by `crustache 2.4.3` ``` In the head of the repository this...

For example: ``` class Person name: String, age: Int32 end tpl = "Hello {{name}}. You're {{age}} years old." p = Person.new("Foo", 24) Crustache.render Crustache.parse(tpl), p ``` > Hello Foo. You're...

I wasn't aware that Crustache supported nested models until I looked at the source. Adding it to README :)