class Haml::Parser

def div(line)

`.` or `#`.
Renders a line that creates an XHTML tag and has an implicit div because of
def div(line)
  line.text = "%div#{line.text}"
  tag(line)
end