glasserc / phphaml

fork of phphaml to integrate bug fixes -- unmaintained
http://phphaml.sourceforge.net/
21 stars 8 forks source link

Code insertion following = (equals) #2

Open derDoc opened 11 years ago

derDoc commented 11 years ago

Code insertation following a '=' does not need a space.

-for ($i = 0; $i < 5; $i++)
  =$i

should work. in PhpHaml however the resulting template is this:

-for ($i = 0; $i < 5; $i++)
  <div><?php echo ; ?>
</div>