There seems to be a problem with multiple comment lines converting from scss to 
sass.
I noticed this while testing compass and trying to go from scss to sass.  
Notice that the 
first line of comment shows up as '/*' instead of '//'  

Matt

$ cat comment_test.scss 
body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;
  // Remove the scaffolding when you're ready to start doing visual design.
  // Or leave it in if you're happy with how blueprint looks out-of-the-box
}

$ sass-convert --from scss --to sass --dasherize comment_test.scss 
comment_test.sass

$ cat comment_test.sass 
body.bp
  +blueprint-typography(true)
  +blueprint-utilities
  +blueprint-debug
  +blueprint-interaction
  /* Remove the scaffolding when you're ready to start doing visual design.
  // Or leave it in if you're happy with how blueprint looks out-of-the-box

$ gem list | g haml
haml (3.0.0.beta.2, 2.2.23)

-- 
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.

Reply via email to