Skip to content

Instantly share code, notes, and snippets.

@tomraithel
Forked from phaer/coffeescript_converter.rb
Created November 13, 2012 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomraithel/4064960 to your computer and use it in GitHub Desktop.
Save tomraithel/4064960 to your computer and use it in GitHub Desktop.
JEKYLL: Coffeescript converter plugin
# Put this file in '_plugins/' and write a YAML header to your .coffee files (i.e. "---\n---\n")
module Jekyll
require 'coffee-script'
class CoffeeScriptConverter < Converter
safe true
priority :normal
def matches(ext)
ext =~ /coffee/i
end
def output_ext(ext)
".js"
end
def convert(content)
begin
CoffeeScript.compile content
rescue StandardError => e
puts "CoffeeScript error:" + e.message
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment