Releases: fallsimply/bilit
Releases · fallsimply/bilit
v0.5.1
v0.5.0 - RegExp Escaping
v0.4.1 - Better Logging
logging now includes the line number and the prefix [bilit]
for normally or [bilit/DEBUG]
in debug mode
v0.4.0 - Code Cleanup and Better Configuration
- Stripped commented function for easier reading
- Added Global Debug Variable (and disable debug printing by default)
- Added Support for setting a Default and Template Specific Regex(p) matching pattern
v0.3.0 - Add New API
New API Example:
var tmpl = bilit.Template("Hello, I'm {{name}} from {{City}}, {{from_state}}")
println(tmpl.Populate(map[string]string{
"name": "John",
"City": "Dallas",
"from_state": "TX"
}))
println(tmpl.Pull("Hello, I'm John from Dallas, TX"))
The new API has a backwards compatible API wrapper
v0.2.0 Base Release
Both pull
and populate
are wokring like specified in the design document.
v0.1.0
pull
is implimented like specified in the design doc.