We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Fails (prints nothing): {{#photos}} {{thumb.src}} {{/photos}}
{{#photos}} {{thumb.src}} {{/photos}}
Works (prints photo's thumb's src): {{#photos}} {{#thumb}}{{src}}{{/thumb}} {{/photos}}
{{#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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
See also:
fhd#32
fhd#44
The text was updated successfully, but these errors were encountered: