class Object

Public Instance Methods

Glam(html, opts={}) click to toggle source

Pretty-print the HTML @param html [String] The HTML to be pretty-printed @param opts [Hash] The options @option opts [Integer] :indent_size

How many spaces should be used for each level of indentation

@return [String] The pretty-printed HTML

# File lib/glam.rb, line 13
def Glam(html, opts={})
  Glam.glamorize(html, opts={})
end