pug-php / pug

Pug template engine for PHP
https://www.phug-lang.com
MIT License
387 stars 42 forks source link

Nested tag interpolation not supported #154

Closed wolfgang42 closed 7 years ago

wolfgang42 commented 7 years ago

Hello,

I encountered an issue with the following code:

p #[em #[strong Yow!]]

I expected to get:

<p><em><strong>Yow!</strong></em></p>

But I actually get:

<p><em>#[strong Yow!</em>]</p>

Thanks!

kylekatarnls commented 7 years ago

Hi, thanks. This is now qualified to come with 2.7. And we will also work on it for our phug refactor (3.0).

kylekatarnls commented 7 years ago

You can now update to 2.7.0 to get nested interpolations working.

Thanks,