I've figured out where this is going wrong - it's in the regular expression Haml uses to extract information from tags. However, it's not because of the expression itself - apparently, something with Rails' new Unicode-oriented Multibyte package is screwing with it. In fact, if you run the Haml executable against it, it works just as expected.
There may be a way to get Multibyte to recognize ISO-8859-1. If not, it may just be a better idea to switch to Unicode... it seems vastly better supported. Sorry I couldn't be of more help, but it's not a problem on our end. - Nathan [EMAIL PROTECTED] wrote: > Hi! > Here are some small tests with HAML. > My files are all in ISO-8859-1. > > > %p ABCDé > ==> <p>ABCD</p> > > %p ABCDéA > ==> <p>ABCD</p> > > %p ABCDéAA > ==> <p>ABCDéAA</p> > > Thanks. > Nicolas. > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Haml" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/haml?hl=en -~----------~----~----~----~------~----~------~--~---
