Does anyone know if there's a tool which can convert SASS (the haml CSS thing) to Less?
A:
You can convert SASS to SCSS using the command line tool, that should get you most of the way there. I'm not familiar with Less syntax, but I think SCSS is similar enough.
sass-convert --from sass --to scss src/screen.sass src/screen.scss
Or a whole directory:
sass-convert --from sass --to scss --recursive src src-scss
Andrew Vit
2010-10-08 05:15:55