Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make {{ . }} notation work with sets #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dluksza
Copy link

@dluksza dluksza commented Jan 6, 2015

Preciously when {{ . }} was used together with set it was producing
single output eg:

(render-string "{{# foo }} {{ . }} {{/ foo }}" {:foo #{1 2 3}})
" #{1 3 2} "

Now previous will iterate over set processing one element at a time.
This means that example mentioned above will produce:

" 1 3 2 "

Note, that the order of values is different and cannot be guaranteed.

Fixes #30

Preciously when {{ . }} was used together with set it was producing
single output eg:

  > (render-string "{{# foo }} {{ . }} {{/ foo }}" {:foo #{1 2 3}})
  " #{1 3 2} "

Now previous will iterate over set processing one element at a time.
This means that example mentioned above will produce:

  " 1  3  2 "

Note, that the order of values is different and cannot be guaranteed.

Fixes davidsantiago#30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

{{ . }} notation doesn't work with sets
1 participant