Class Haml::HTML
In: lib/haml/html/erb.rb
lib/haml/html.rb
Parent: Object

Converts HTML documents into Haml templates. Depends on [Hpricot](github.com/whymirror/hpricot) for HTML parsing. If ERB conversion is being used, also depends on [Erubis](www.kuwata-lab.com/erubis) to parse the ERB and [ruby_parser](parsetree.rubyforge.org/) to parse the Ruby code.

Example usage:

    Haml::HTML.new("<a href='http://google.com'>Blat</a>").render
      #=> "%a{:href => 'http://google.com'} Blat"

Methods

new   render   to_haml  

Classes and Modules

Module Haml::HTML::Node
Class Haml::HTML::ERB

Constants

TEXT_REGEXP = /^(\s*).*$/

Public Class methods

@param template [String, Hpricot::Node] The HTML template to convert @option options :erb [Boolean] (false) Whether or not to parse

  ERB's `<%= %>` and `<% %>` into Haml's `=` and `-`

@option options :xhtml [Boolean] (false) Whether or not to parse

  the HTML strictly as XHTML

[Source]

     # File lib/haml/html.rb, line 137
137:     def initialize(template, options = {})
138:       @options = options
139: 
140:       if template.is_a? Hpricot::Node
141:         @template = template
142:       else
143:         if template.is_a? IO
144:           template = template.read
145:         end
146: 
147:         template = Haml::Util.check_encoding(template) {|msg, line| raise Haml::Error.new(msg, line)}
148: 
149:         if @options[:erb]
150:           require 'haml/html/erb'
151:           template = ERB.compile(template)
152:         end
153: 
154:         method = @options[:xhtml] ? Hpricot.method(:XML) : method(:Hpricot)
155:         @template = method.call(template.gsub('&', '&amp;'))
156:       end
157:     end

Public Instance methods

Processes the document and returns the result as a string containing the Haml template.

[Source]

     # File lib/haml/html.rb, line 161
161:     def render
162:       @template.to_haml(0, @options)
163:     end
to_haml()

Alias for render

[Validate]