slim-template/html2slim

View on GitHub
lib/html2slim.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative 'html2slim/version'
require_relative 'html2slim/converter'

module HTML2Slim
  def self.convert!(input, format=:html)
    if format.to_s == "html"
      HTMLConverter.new(input)
    else
      ERBConverter.new(input)
    end
  end
end