That's an HTML templater, not a php templater, not java or whatever.
I am looking for something like HAML for PHP. I tried the 2 projects for PHP, PHAML and PHPHaml both of which are suffering from serious bugs.
Do you know of any good html templater out there, preferably for PHP?
EDIT I''m looking for something that can turn this
<h1>Heading</h1>
<p>entry</p>
<blockquote>quote</blockquote>
to something like this
h1 : heading
p : entry
blockquote : quote
something like what phphaml does