handlebars for Mojito provides a handlebars Renderer implementation that was designed specifically for Mojito with full compatibility.
SonarCloud Report
Quickstart
To start using handlebars as your renderer just enable it as the default renderer like this:
func init() {
handlebars.AsDefault()
}
Or to use handlebars as a secondary renderer you can register it as a named renderer like this:
func init() {
handlebars.As("myRenderer")
}
Documentation
Read our Documentation, check out the Project Website.