Clover Sketch: Template Engine; fully inspire by Vue.js and Laravel Blade. Built-in XSS attack prevention and @CSRF token generation.
<h2> {{ $name }} </h2>Output:
<?php echo htmlspecialchar($name); ?><clover:@css>
h2
{
color: red;
}
</clover:@css>output:
<style>
h2{
color: red;
}
</style>