是否有类似现有的过滤器:sass-filter for:scss in haml?
在goolge中查看,但没有找到有用的东西..
为什么没有scss-filer存在(据我所知)?
答案 0 :(得分:2)
请参阅https://gist.github.com/1646573
# haml_scss_initializer.rb
module Haml::Filters
module Scss
include Base
lazy_require 'sass/plugin'
def render(text)
::Sass::Engine.new(text, ::Sass::Plugin.engine_options.merge(:syntax => :scss)).render
end
end
end
答案 1 :(得分:0)
没有过滤器,我在github页面上发布了一个问题: