邮件视图中的 Rails 3.1 HAML SCSS 过滤器

发布于 2024-12-23 14:57:47 字数 122 浏览 0 评论 0原文

haml 中是否有类似于现有 :sass-filter for :scss 的过滤器?

在 goolge 中查找,但没有找到有用的东西..

并且有没有存在 scss-filer 的原因(据我所知)?

Is there a filter like the existing :sass-filter for :scss in haml?

Looked out in goolge but didn't found something usefull..

And is there a reason why there is no scss-filer existing (as far as I know)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦晓ヶ微光ヅ倾城 2024-12-30 14:57:47

请参阅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

See 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
相思碎 2024-12-30 14:57:47

没有过滤器,我在 github 页面上发布了一个问题:

https://github.com/nex3 /haml/issues/474

There is no filter and I posted an issue on the github page:

https://github.com/nex3/haml/issues/474

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文