-
-
Save edeustace/3372240 to your computer and use it in GitHub Desktop.
A Jekyll plugin to convert a .less file to .css
This file contains 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 | |
# Compiled LESS CSS into CSS. You must specify an empty YAML front matter | |
# at the beginning of the file. | |
# .less -> .css | |
class LessConverter < Converter | |
safe true | |
priority :low | |
pygments_prefix "\n" | |
pygments_suffix "\n" | |
def setup | |
return if @setup | |
require 'less' | |
@setup = true | |
rescue LoadError | |
STDERR.puts 'You are missing a library required for less. Please run:' | |
STDERR.puts ' $ [sudo] gem install less' | |
raise FatalException.new("Missing dependency: less") | |
end | |
def matches(ext) | |
ext =~ /less/i | |
end | |
def output_ext(ext) | |
".css" | |
end | |
def convert(content) | |
setup | |
begin | |
parser = Less::Parser.new | |
tree = parser.parse(content) | |
tree.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