rip747 / Mustache.cfc

{{ mustache }} for ColdFusion
http://mustache.github.com/
MIT License
46 stars 22 forks source link

Fixed whitespace management issue with elsey-like statements #19

Closed dswitzer closed 11 years ago

dswitzer commented 11 years ago

I found a bug where elsey-like statements would incorrectly clean up extra whitespace. For example:

First

{{#true}}
TRUE!
{{/true}}
{{^true}}
FALSE!
{{/true}}

Last

Would end up getting generated as:

First
FALSE!

Last

Instead of:

First

FALSE!

Last