anaisbetts / SassAndCoffee

SassAndCoffee adds support in ASP.NET MVC to (you guessed it!) Sass/SCSS and CoffeeScript
http://blog.paulbetts.org/index.php/2011/06/06/new-release-sassandcoffee-0-9-now-not-glacially-slow/
Microsoft Public License
199 stars 37 forks source link

Allow compilation of sass via string parameters instead of solely file-based sass compilation. #56

Closed drmohundro closed 9 years ago

drmohundro commented 12 years ago

This change allows callers to compile a sass or scss string - basically: string in, string out.

One of the reasons this would be useful, at least for us, is that we use render dynamic CSS (i.e. with ContentResult { ContentType = "text/css", Content = someGeneratedContent }). Our design team began using sass for their designs so we were looking into pulling in sass anyway, but by generating sass instead of CSS, it would be easy to merge our changes with their changes.

kogir commented 12 years ago

Oh, cool. I'll take a look at this when I have a moment. Kind of slammed right now with other things.