class Jekyll::Converters::Haml

haml converter

Public Instance Methods

convert(content) click to toggle source
# File lib/jekyll/haml/markup/converter.rb, line 15
def convert(content)
  Jekyll::Haml::Parser.compile content
end
matches(ext) click to toggle source
# File lib/jekyll/haml/markup/converter.rb, line 7
def matches(ext)
  Jekyll::Haml::Parser.matches ext
end
output_ext(_ext) click to toggle source
# File lib/jekyll/haml/markup/converter.rb, line 11
def output_ext(_ext)
  '.html'
end