Skip to content

Instantly share code, notes, and snippets.

@punker76
Forked from phaer/coffeescript_converter.rb
Created August 28, 2012 07:07
Show Gist options
  • Save punker76/3495737 to your computer and use it in GitHub Desktop.
Save punker76/3495737 to your computer and use it in GitHub Desktop.
A trivial CoffeeScript.org -> Javascript plugin for jekyll ( https://github.com/mojombo/jekyll ). 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