hamlphp / HamlPHP

Yet another Haml to HTML converter written in PHP.
http://hamlphp.github.com/HamlPHP
MIT License
84 stars 15 forks source link

Else doesn't work correctly #12

Closed d4rky-pl closed 13 years ago

d4rky-pl commented 13 years ago

Example:

- if(issset($test))
    %span One
- else
    %span Two

Expected:

<?php if(isset($test)): ?>
<span>One</span>
<?php else: ?>
<span>Two</span>
<?php endif; ?>

Result:

<?php if(isset($test)): ?>
<span>One</span>
<?php endif; ?>
<?php else ?>
*nothing more*
d4rky-pl commented 13 years ago

Kinda makes the module useless