Looking For A Good HTML Templater for PHP
Posted
by Ygam
on Stack Overflow
See other posts from Stack Overflow
or by Ygam
Published on 2010-04-15T08:35:52Z
Indexed on
2010/04/15
9:03 UTC
Read the original article
Hit count: 309
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
© Stack Overflow or respective owner