Closed pjb3 closed 14 years ago
This doesn't compile the each expression into a function
haml.compile(":each n in [1, 2, 3]\n = n")
this does:
haml.compile("- ns = [1, 2, 3]\n:each n in ns\n = n")
Fixed in 936171391dda1a173827012f69cd259b9d2b719c. Thanks for the suggestion.
This doesn't compile the each expression into a function
this does: