class Boilerpipe::SAX::TagActions::Body

Marks this tag the body element (this should usually only be set for the <BODY> tag).

Public Instance Methods

changes_tag_level?() click to toggle source
# File lib/boilerpipe/sax/tag_actions/body.rb, line 17
def changes_tag_level?
  true
end
end_tag(handler, name) click to toggle source
# File lib/boilerpipe/sax/tag_actions/body.rb, line 11
def end_tag(handler, name)
  handler.flush_block
  handler.exit_body_tag!
  false
end
start(handler, name, attrs) click to toggle source
# File lib/boilerpipe/sax/tag_actions/body.rb, line 5
def start(handler, name, attrs)
  handler.flush_block
  handler.enter_body_tag!
  false
end