module Boilerpipe::SAX::TagActions # Marks this tag the body element (this should usually only # be set for the tag). class Body def start(handler, name, attrs) handler.flush_block handler.increase_in_body! false end def end_tag(handler, name) handler.flush_block handler.decrease_in_body! false end def changes_tag_level? true end end end