crustache
crustache
crustache is the implementation of mustache logic-less templates.
This library implemated mustache's spec v1.1.2+λ.
__ __
____________ _______/ /_____ ______/ /_ ___
/ ___/ ___/ / / / ___/ __/ __ `/ ___/ __ \/ _ \
/ /__/ / / /_/ (__ ) /_/ /_/ / /__/ / / / __/
\___/_/ \__,_/____/\__/\__,_/\___/_/ /_/\___/
Installation
Add it to Projectfile
deps do
github "MakeNowJust/crustache"
end
Usage
require "crustache"
# Define a type for model
alias Model = String | Hash(String, Model)
# Parse a mustache template
template = Crustache.parse "Hello {{Name}} World!"
# Make a model
model = {} of String => Model
model["Name"] = "Crustache"
# Render!
puts Crustache.render template, model as Model
#=> Hello Crustache World!
Development
This library's specs are put in spec
directory. They can run by crystal spec ./spec/crustache_spec.cr
command.
Contributing
- Fork it ( https://github.com/MakeNowJust/crustache/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- @MakeNowJust TSUYUSATO Kitsune - creator, maintainer