In Haml HTML-style aatributes work just like attribute hashes.
So this:
%html(xmlns="http://www.w3.org/1999/xhtml")
should result in this
<html xmlns="http://www.w3.org/1999/xhtml"></html>
Instead phphaml outputs this:
<html<?php $this->writeAttributes(array ('class' => 'w3 org')); ?>>
<?php echo ; ?>
In Haml HTML-style aatributes work just like attribute hashes.
So this:
should result in this
Instead phphaml outputs this: