-
Hi! Jade project has been renamed to Pug (https://pugjs.org/). Does your extension works well with the new changes? Do you plan to update it? Thanks!
-
Using `'expressionLanguage' => 'js'`, I have the following code:
```pug
if url
// Do something with url
else
// Do something else
```
It compiles to
```php
if($url)
```
If url is not…
-
Failed to execute `INSERT INTO card_legality (format_id, card_id, legality)
SELECT 34, bq.id, 'Legal'
FROM (
SELECT
`u`.`id` AS `id`, `u`.`layout` AS `layout`,
…
-
Failed to execute `INSERT INTO card_legality (format_id, card_id, legality)
SELECT 34, bq.id, 'Legal'
FROM (
SELECT
`u`.`id` AS `id`, `u`.`layout` AS `layout`,
…
-
a(href=$companySupportURL + '/policies')
Fatal error: Uncaught Tale\Jade\Parser\Exception: Failed to parse Jade: Attributes in elements and mixins always need a name, it seems you only passed a val…
-
At the moment, there's just one description field for each equippable item, which includes both the RPGish fun description and the annotation of what it does to your stats. This is great in the Reward…
-
Exceeded slow_query limit (2.0 > 2) in mysql:
INSERT INTO card_legality (format_id, card_id, legality)
SELECT 34, bq.id, 'Legal'
FROM (
SELECT
`u`.`id` …
-
Have uou ever thought about decoupling Markdown and Twig from the core, providing them as plugin? This way one could use other template engines and html formatting languages. And why dont you use a pr…
-
page.pug
```
extends layout.pug
block foo
h1 page text
block widgets
include widget.pug
```
widget.pug
```
extends widget_base.pug
block foo
h3 widget text
```
the block `foo` in `p…
-
We need a modular approach for the compiler to provide an easy way to add different compilers.
Path-resolving should be removed from the compiler, it should work with a simple node-tree and a Path-Res…