4

我的应用程序中有模板,它们有自己的样式表。我想让我的用户(和我自己)利用 SCSS 功能。但是,我还没有找到如何向Sassgem 发送一个 SCSS 字符串,并让它返回常规 CSS。

(我也没有在google上找到它,在文档中也不容易找到。)

那么我该怎么做呢?

4

1 回答 1

11

做就是了:

# your SCSS string
str = %Q{ 
  $text-color: #555555;
  $unfocused-background-color: #f1f0ec;
  body {
    background: $unfocused-background-color;
    color: $text-color;
  }
}
se = Sass::Engine.new(str, :syntax => :scss)
se.render 
# => "body {\n  background: #f1f0ec;\n  color: #555555; }\n"

请参阅此处的 Sass 参考文档:http: //sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html

于 2013-08-07T18:39:03.257 回答