fhd / clostache

{{ mustache }} for Clojure
GNU Lesser General Public License v3.0
318 stars 62 forks source link

Dot notation breaks inside repeated sections #55

Open cch1 opened 7 years ago

cch1 commented 7 years ago
(render "{{hotels.tripadvisor.popularity-rank}}"
        {:hotels {:tripadvisor {:popularity-rank 12}}})
=>"12"

But

(render "{{#hotels}}{{tripadvisor.popularity-rank}}{{/hotels}}"
        {:hotels [{:tripadvisor {:popularity-rank 12}}]})
=> ""