Seth Kinast
Seth Kinast
@jimmyhchan would like a function called `dust.renderTo`: `dust.renderTo = function(tmpl, ctx, el){}`
Replaces #354 since we removed the old `dustc` tool. We will create a command-line tool that accepts a template and context, and renders the result to stdout or a file....
Some sort of small HTML (web component? probably not) that we can apply to documentation. ``` Dust allows Promises to be passed as part of your context. When a Promise...
We suffer badly from copy-paste divergence across testing frameworks in dust and dust-helpers. We need to modularize that code and pull it out into a package that includes the Rhino...
It's probably best if we use a shootout engine that already exists somewhere, and make it part of a testing suite. That keeps us from having to dep a bunch...
Dust templates currently compile to a set of functions that are invoked via `body_0` being registered by `dust.register`. In #513 we suggest that these body functions could be members of...
Hi, As of Dust 2.5.0 you can set `dust.config.whitespace = true` to prevent whitespace from being stripped. As of Dust 2.7.0, `dust.optimizers` is deprecated. It will be removed in a...
Hi, Thanks for using Dust! ``` > dust.compile("Hello {world}") '(function(dust){function body_0(chk,ctx){return chk.w("Hello ").f(ctx.get(["world"], false),ctx,"h");}body_0.__dustBody=!0;return body_0}(dust));' > dust.config.amd = true; true > dust.compile("Hello {world}") 'define(["dust.core"],function(dust){function body_0(chk,ctx){return chk.w("Hello ").f(ctx.get(["world"], false),ctx,"h");}body_0.__dustBody=!0;return body_0});' >...