hoisie / mustache

The mustache template language in Go
MIT License
1.11k stars 225 forks source link

Add dot notation support #44

Closed ddliu closed 10 years ago

ddliu commented 10 years ago

According to the Mustache spec, the dot notation should be available.

Hello {{person.name}}

Other Mustache implements such as mustache.js have already done the job.

I've achieved the feature in the lookup function, and added some tests from the spec

julien-c commented 10 years ago

Yay!