I’ve been researching this to no avail. Does anyone know if there is HAML/SCSS support on web.py.
It does not need to be native support, it could be a module that is imported to enable it.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As far as Sass goes, you can use Ruby’s Sass library to process the SCSS and then serve up the CSS output. There’s now also an implementation in C++ if for some reason you don’t want to use Ruby.
Another alternative is to use LessCSS, which is implemented in Javascript. During development you can offload all of the processing to the browser, and serve precompiled CSS only in production. I find it to be a pretty comfortable workflow, even though in some ways the implementation is not as polished as Sass’s.