This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var template = '<select>{{#sources.countries}}<option value="{{.}}">{{#translate}}country-{{.}}{{/translate}}</option>{{/sources.countries}}</select>'; | |
| var template_compiled = Hogan.compile(template); | |
| var data = { | |
| "sources": { | |
| "countries": [ | |
| "usa", | |
| "uk", | |
| "france", | |
| "canada", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var template = '{{#translate}}user-{{name}}{{/translate}}'; | |
| var template_compiled = Hogan.compile(template); | |
| var data = { | |
| "data": { | |
| "1": {"name": "test"}, | |
| "2": {"name": "example"}, | |
| "3": {"name": "user"} | |
| } | |
| } |