-
Now that tale-jade is deprecated in favor of tale-pug, will this be updated to make it easy to use tale-pug in Laravel
-
Consider this code:
```
p #{$var}
$var
```
Produces:
```
```
First occurence was checked by isset, and second was not.
1. Is it possible to configure isset checks t…
-
One little missing feature of laravel blade is that we can pass additional variables as the second parameter to @include in blade (as laravel docs says) but I did not find it on tale-jade-laravel.
[h…
-
When `ttl` option is set, tale-jade does not care whether source template was changed or not. It just sends cached file to render.
It would be desirable to have an option to check source tempate fi…
-
[In Pug](http://jade-lang.com/demo), this:
```
mixin test
block
- $text = 'Test text';
p=$text
+test
p=$text
```
Renders:
```
Test text
Test text
```
In Tale Jade, the very same renders:
``…
-
Tale Jade works with Symfony, but not too well right now.
I've created an implementation (will put it online soon), a JadeBundle, for Symfony2/3.
Some of the problems have already been taken care of…
-
Hi Torben, thanks for your hard working on this tale-jade project.
I'd like a new feature to be added if it's possible for you.
Here's a breakdown:
``` jade
p= $faker->name
p!= $faker->name
```
In t…
-
Becoming a grad student has a lot of upsides: direct funding for research, working on procedural generation projects, and so on. But it left me with far less free time to work on NaNoGenMo novels. But…
-
It seems Tale Jade does not render boolean attributes smart [like Pug does](https://pugjs.org/language/attributes.html#boolean-attributes).
```
button(disabled=true)
button(disabled=false)
```
Rende…
-
Import's actually support Attributes right now.
`extends some-file(foo='bar', 'baz')`
is perfectly valid right now and the `import` node will get the correct attributes appended to `->attributes`
Th…