用于SCSS的纳米滤波器



我正在使用nanoc和ruby编写一个网站,我想使用SCSS。但我遇到了点小问题。无论我尝试什么,我都无法将我的SCSS文件转换并输出为编译后的CSS。它要么抛出错误,要么显示为完全相同的文件类型。我的Ruby规则文件和目录结构如下,请帮助!

#!/usr/bin/env ruby
compile '/**/*.html' do
  layout '/default.*'
end
# This is an example rule that matches Markdown (.md) files, and filters them
# using the :kramdown filter. It is commented out by default, because kramdown
# is not bundled with Nanoc or Ruby.
#
#compile '/**/*.md' do
#  filter :kramdown
#  layout '/default.*'
#end
route '/**/*.{html,md}' do
  if item.identifier =~ '/index.*'
    '/index.html'
  else
    item.identifier.without_ext + '/index.html'
  end
end
compile '/assets/SCSS/' do
  filter :scss => :css
  write @item.identifier.without_ext + '.css'
 end
compile '/assets/images/*' do
  write item.identifier.to_s
end
compile '/**/*' do
  write item.identifier.to_s
end
layout '/**/*', :erb

下面是我的目录结构:

root
|
|_content
|  |
|   _assets
|     |
|      _test.scss
_public
  |
   _assets
     |
      _test.scss <-------- This should be compiled CSS

我发现了一个名为Compass的实用程序,它为您提供了SCSS的过滤器选项。

按照如何使nanoc SASS过滤器使用SCSS语法中概述的方法使用SASS过滤器?

filter :sass, syntax: :scss

最新更新