php-html-parser icon indicating copy to clipboard operation
php-html-parser copied to clipboard

Twig template loading

Open hoxhaj opened this issue 4 years ago • 1 comments

I am loading a twig template and modifying the html. I can modify the html but it breaks the twig string.

After i load the .twig file whith loadFromFile() this div:

<div {{ not variable_name ? 'class="class_name"' }} id="id_name">

turns to:

<div {{ not variable_name ? 'class="class_name" }} id="id_name">

'class="class_name"<=== the single quote after the double quotes is lost.

I wanted to know if there is an option to set for this purpose or this case is not handled.

Thanks!

hoxhaj avatar Feb 05 '20 16:02 hoxhaj

This case is not handled, we will look to add support for this case but twig was not something that was taken into account.

paquettg avatar May 12 '20 12:05 paquettg