text template like erb that can be used with opal
Installation
Add this line to your application's Gemfile:
gem 'nano_template'
And then execute:
$ bundle
Or install it yourself as:
$ gem install nano_template
Usage
require 'nano_template'
require 'ostruct'
nano_template = NanoTemplate.new
proc = nano_template.template("<%= foo %>bar")
stash = OpenStruct.new({foo: 42})
p proc.call(stash) # "42bar"
API
License
This is released under MIT License.