-
``` html
{>"layouts/master" /}
{
-
If one does not include `dustjs-linked` as a dependency in npm, the path to the `dust-core-x.x.x.js` file is incorrect, because it exists within this plugin's `node-modules` folder instead.
-
I am trying to get started with Ractive but could not make simple partials template switcher to work. I know, this has been discussed before but still, could not understand when `setTemplate` called…
-
After upgrading to v2.2.3 from v1.1.1, I've noticed that conditionals that evaluate empty strings now return a "truthy" value.
The following:
{?value}{value}{:else}{messages.phone_number_example}{/va…
-
We happen to have to compile a template that contains smarty template tags (see example below) provided by a third party, which conflict with the dustjs tags. Is there a way to have the dustjs parser …
-
As
```
require("dustjs-helpers");
```
is very much needed for the helpers to execute and that is not mentioned in https://github.com/linkedin/dustjs/wiki/Dust-Tutorial, people have to spend a lot o…
-
Is there a good description of the latest valid dust syntax rules. The one area I'm fuzzy on is what has been done for subscripting support. Some examples given data of
list2: [ {"biz": "123"}, {"bi…
-
Dust is replacing double quotes (") with forward slash double qoute (/") both in auto escape mode or with piped filters (of course with pipe h (|h) it converts it to '&/quot;').
Is this a bug?
How t…
-
GitHub now serves files from raw.github.com as plain text with an `x-content-type-options` header. As a result, the pull down menus on the [test page](http://linkedin.github.io/dustjs/test/test.html)…
-
Please do not replace static values "true" and "false" in conditions as it would enable us to use conditions like
{@if cond="{isActive} == false"}disabled="disabled"{/if}
instead of having to workaro…