SimonDegraeve / meteor-jade-handlebars

[DEPRECATED] Write the templates in your Meteor Application using Handlebars and Jade instead of HTML and Handlebars
34 stars 24 forks source link

Using {{something}} in id #20

Open Ulrar opened 11 years ago

Ulrar commented 11 years ago

{{#each lasts}} label(for='id_{{id}}') {{pseudo}} p#id{{_id}} {{text}} {{/each}}

That doesn't produce errors, the label is correct but the id of p is id_ and it contains the id and the text. The expected behavior would be to generate a p id="id_some_complicated_mongo_id" no ?