-
-
Save pyk/8346584 to your computer and use it in GitHub Desktop.
Using LESS on Jekyll site . for using intructions see here https://kippt.com/bayu/notes/clips/18862841
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
class LessConverter < Converter | |
safe true | |
priority :high | |
def setup | |
return if @setup | |
require 'less' | |
@setup = true | |
rescue LoadError | |
STDERR.puts 'You are missing the library required for less. Please run:' | |
STDERR.puts ' $ [sudo] gem install less' | |
raise FatalException.new("Missing dependency: less") | |
end | |
def matches(ext) | |
ext =~ /less|lcss/i | |
end | |
def output_ext(ext) | |
".css" | |
end | |
def convert(content) | |
setup | |
begin | |
parser = Less::Parser.new | |
parser.parse(content).to_css | |
rescue => e | |
puts "Less Exception: #{e.message}" | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment