Maxime Quandalle

Results 172 comments of Maxime Quandalle

So basically the idea would be to support `script` tag I guess. This is similar to what http://riotjs.com/ does for instance. I'm waiting for more feedback from users.

You can use the spacebars syntax (`{{_ "string_variable"}}`) either in texts or in attributes. You can see an example of its usage in libreboard — http://git.libreboard.com/libreboard/libreboard/blob/newui/client/views/boards/header.jade. I guess we could...

I always wanted to have a syntax like: ``` jade +myTemplate(arg=myFn('Test')) ``` but that would require a parser rewriting and some changes in the blaze runtime (see #1). In the...

Hi @thr0w, Thanks for that effort, that's interesting. I use a slightly different strategy for testing jade templates, I use both a meteor-jade and a spacebars template and I verify...

In the above example `sk8earth.jade` is the file, no? In this case the “only” missing element is the line (and potentially column) number. Not sure if I can do something...

We currently support ``` jade input($dyn = attrs) ``` Which is equivalent to spacebars ``` html ``` We probably want to support the jade syntax instead of our custom `$dyn`...

@RobertLowe could you please open a new issue?

Hum, after a second thought on (1), did I really say somewhere that I don't want to support this syntax? That seems a reasonable expectation assuming things like `if helper...

I will eventually drop support for the mustache syntax and only keep jade syntax. The mustache syntax support is a side effect of using Spacebars for inline tags. [see the...