class Jekyll::ElmConverter
Public Instance Methods
convert(content)
click to toggle source
# File lib/jekyll_elm.rb, line 15 def convert(content) ElmCompiler.new(content).process! end
matches(ext)
click to toggle source
# File lib/jekyll_elm.rb, line 7 def matches(ext) ext =~ /^\.elm$/i end
output_ext(ext)
click to toggle source
# File lib/jekyll_elm.rb, line 11 def output_ext(ext) '.html' end