summaryrefslogtreecommitdiff
path: root/_plugins
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-02-12 07:50:02 -0800
committerFranck Cuny <franck.cuny@gmail.com>2014-02-12 07:50:02 -0800
commitb9fa5f7399ac42ac81c618dbdf5098a89bff33eb (patch)
tree68a12c9c96aae221a3229aa68f7eea1321fbc6be /_plugins
parentfix the permalink for the css (diff)
downloadlumberjaph-b9fa5f7399ac42ac81c618dbdf5098a89bff33eb.tar.gz
remove the plugins
Diffstat (limited to '_plugins')
-rw-r--r--_plugins/jekyll_asset_pipeline.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/_plugins/jekyll_asset_pipeline.rb b/_plugins/jekyll_asset_pipeline.rb
deleted file mode 100644
index ea61c59..0000000
--- a/_plugins/jekyll_asset_pipeline.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'jekyll_asset_pipeline'
-
-module JekyllAssetPipeline
- class SassConverter < JekyllAssetPipeline::Converter
- require 'sass'
-
- def self.filetype
- '.scss'
- end
-
- def convert
- return Sass::Engine.new(@content, syntax: :scss).render
- end
- end
-end