-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Description
You can (ab)use sections and {{.}} to conditionally include passages like this in mustache:
Template: {{#foo}}quox: {{.}}{{/foo}}
Data (JSON): {"foo": "bar"}
Output: quox: bar
This does not work in clostache:
(render "{{#foo}}quox: {{.}}{{/foo}}" {:foo "bar"})
;=> "quox: bquox: aquox: r"If this is not going to be addressed anytime soon, is there another way to achieve conditionals without nesting data? I want to fill a template with data from a CSV file, which is necessarily flat, so I can't just use the more reasonable {:foo {:value "bar"}} and {{#foo}} {{value}} {{/foo}}.
Metadata
Metadata
Assignees
Labels
No labels