修复raw标签支持

This commit is contained in:
TOP糯米 2019-07-25 22:58:26 +08:00
parent 3f52362430
commit a15a6af6d8
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class Top implements TemplateIfs
}
$content = file_get_contents($filename);
$content = $this->engine->compile($content);
$content = $this->engine->returnRaw($content);
file_put_contents($compileFileName, $content);
}
return $compileFileName;