I’m trying to build an Adobe Air app not using Flash but HTML5. I hit a snag when trying to use templates since most of them like handlebars and underscore’s templates rely on eval or new Function(...) or Function.apply(...) and Adobe Air has restricted runtime use of eval to parsing only JSON objects.
Does anyone know of a js templating engine that will work on Air apps?
Templating libraries that do not use
evalorFunction