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

Enable using dotted access notation in a section #2

Open
fotoetienne opened this issue Sep 28, 2016 · 0 comments
Open

Enable using dotted access notation in a section #2

fotoetienne opened this issue Sep 28, 2016 · 0 comments

Comments

@fotoetienne
Copy link
Owner

fotoetienne commented Sep 28, 2016

Fails (prints nothing):
{{#photos}} {{thumb.src}} {{/photos}}

Works (prints photo's thumb's src):
{{#photos}} {{#thumb}}{{src}}{{/thumb}} {{/photos}}

First example should work same as second one, but it fails.

Failing test case:

(deftest test-render-tag-with-dotted-name-like-section--inside-another-section
  (is (= "photo thumb" (render "{{#photos}}{{src}} {{thumb.src}}{{/photos}}"
                               {:photos [{:src "photo" :thumb {:src "thumb"}}]}))))

See also:
fhd#32
fhd#44

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

No branches or pull requests

1 participant