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
Why don’t you look at textile?
http://textism.com/tools/textile/
Look at the example syntax on the right hand side, here is an example…
Converts to:
There are other examples at the bottom of the right sidebar.