I’m wondering however if you have to add custom logic in order to make any handlebars helpers to work for both static and dynamic content binding. It looks to me like you have to do sth like:
# psudo-code!!
function myhelper (content, options)
if incoming content is static (a simple String)
options.hash.content = incoming content
if incoming content is dynamic (a binding)
options.hash.contentBinding = incoming content (binding)
Is this really the case? I would think this is a very common scenario, hence there should be an easier way to apply this common pattern (or am I missing sth?)