Skip to content

Instantly share code, notes, and snippets.

@jasongraham
Created October 22, 2010 04:14
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save jasongraham/639920 to your computer and use it in GitHub Desktop.
Save jasongraham/639920 to your computer and use it in GitHub Desktop.
A Jekyll plugin to convert a .less file to .css
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
Less::Engine.new(content).to_css
rescue => e
puts "Less Exception: #{e.message}"
end
end
end
end
@KBalderson
Copy link

Looks like Less::Engine doesn't exist with the Less gem.

I modified this gist to use Less::Parser.new and .parse

https://gist.github.com/KBalderson/5689220

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment