meteor-jade icon indicating copy to clipboard operation
meteor-jade copied to clipboard

The Jade template engine for Meteor/Blaze

Results 46 meteor-jade issues
Sort by recently updated
recently updated
newest added

Hello, It seems that all of the following are broken: ``` jade #1 - var selected = (this.selected ? 'selected' : '') div(class=selected) Selected Item #2 div(class=(this.selected ? 'selected' :...

Hi There, I just got tripped by jade and I still haven't recovered. Having spent so much time to debug what the issue was, I found jade was the culprit....

question

While we can use `{{@index}}` on current Meteor version, but when I use this token with jade, it doesn't work.

enhancement

Hey, @mquandalle! I have this particular markup and had to resort to native spacebars syntax for passing arguments to helper inside `{{parentRegion _id}}`. ``` jade .menu +each city .item(data-id='#{_id}') #{name}...

enhancement

This syntax seems not to be supported ``` jade - var x = "datablabla" ``` throws `Uncaught Error: No such function: var` in chrome console.

It would be good if you would implement jade's case statment support ``` jade template(name='main') case friends when 0 p you have no friends when 1 p you have a...

enhancement

I'd like to use something like ``` li(class= isChecked ? 'checked' : '') input.text button.delete ``` But it seems the meteor-jade does not support ternary operator, so instead I must...

I have a template helper method `momentify` that accepts one argument, `createdAt` The spacebars syntax works... `{{ momentify createdAt }}` This syntax does not... `#{ momentify createdAt }` After reading...

enhancement
documentation

I'm using tap:i18n and when using an i18n string i'm doing this in standard Meteor: {{_ "string_variable"}} However this does not work: # {_ "string_variable"} I'm fine with using the...

enhancement

Is there a proper way to use template helpers? I am using img.img-circle(alt="image" src="#{profileInfo 'photo'}" href="/profiles/#{_id}" ) but in order to use it i need to use img.img-circle(alt="image" src="{{profileInfo 'photo'}}"...