module BetterHtml

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/better_html.rb, line 10
def self.config
  @config ||= Config.new
end
config=(new_config) click to toggle source
# File lib/better_html.rb, line 14
def self.config=(new_config)
  @config = new_config
end
configure() { |config| ... } click to toggle source
# File lib/better_html.rb, line 6
def self.configure
  yield config if block_given?
end