diff --git a/inc/template.php b/inc/template.php index 9c61ae15..228629bb 100644 --- a/inc/template.php +++ b/inc/template.php @@ -45,7 +45,7 @@ if(@file_get_contents("{$config['dir']['template']}/${templateFile}")) { $body = $twig->render($templateFile, $options); - if($config['minify_html']) { + if($config['minify_html'] && preg_match('/\.html$/', $templateFile)) { $body = trim(preg_replace("/[\t\r\n]/", '', $body)); }