- if_eq
- iff
Handlebars if_eq - html
Works:
{{#if name}} {{/if}}
Does not work:
{{#if name === 'Foo'}} {{/if}}
So we will implement
{{#if_eq name === 'Foo'}} {{/if_eq}}
Error: if_eq doesn't match if
examples/handlebars/handlebars_if_eq.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <script src="jquery.js"></script> <script src="handlebars.min.js"></script> <script src="handlebars_if_eq.js"></script> <script src="handlebars_data.js"></script> <script src="handlebars_process.js"></script> <script id="text-template" type="text/x-handlebars-template"> <h2>{{title}}</h2> <h3>{{description}}</h3> <ul> {{#each articles}} {{#if_eq author 'Foo'}} <li>{{author}} - {{url}}</li> {{/if_eq}} {{/each}} </ul> </script> </head> <body> <div id="text"></div> </body> </html>