module ContentfulConverter
Constants
- VERSION
Attributes
configuration[RW]
Public Class Methods
configure() { |configuration| ... }
click to toggle source
# File lib/contentful_converter/configuration.rb, line 8 def self.configure self.configuration ||= Configuration.new yield(configuration) if block_given? end
convert(html)
click to toggle source
# File lib/contentful_converter.rb, line 6 def self.convert(html) Converter.convert(html) end