Closed sandrodz closed 4 years ago
I ran this very basic code:
<?php
use Pug\Pug;
include 'vendor/autoload.php';
(new Pug(['pretty' => true]))->display('div: p: Hello');
echo "\n";
(new Pug(['pretty' => false]))->display('div: p: Hello');
And I get:
<div>
<p><b>Hello</b></p>
</div>
<div><p><b>Hello</b></p></div>
Please provide:
$this->dev_env
value while if it's false, your change are simply not taken into account and I don't see neither what happen to $this->options
before it's passed to the renderer, and I can't even check how and if it's really passed to it)If you follow the issue pattern we provide, it will helps us to help you.
Hi
I could not find option to disable html minification. Played with pretty but it did not do anything.