class Jekyll::Converters::CoffeeScript

Public Instance Methods

convert(content) click to toggle source
# File lib/jekyll/converters/coffeescript.rb, line 15
def convert(content)
  ::CoffeeScript.compile(content)
end
matches(ext) click to toggle source
# File lib/jekyll/converters/coffeescript.rb, line 7
def matches(ext)
  ext.downcase == ".coffee"
end
output_ext(ext) click to toggle source
# File lib/jekyll/converters/coffeescript.rb, line 11
def output_ext(ext)
  ".js"
end