class Boilerpipe::SAX::TagActions::InlineWhitespace

Marks this tag a simple “inline” element, which generates whitespace, but no new block.

Public Instance Methods

changes_tag_level?() click to toggle source
# File lib/boilerpipe/sax/tag_actions/inline_whitespace.rb, line 14
def changes_tag_level?
  false
end
end_tag(handler, name) click to toggle source
# File lib/boilerpipe/sax/tag_actions/inline_whitespace.rb, line 9
def end_tag(handler, name)
  handler.append_space
  false
end
start(handler, name, attrs) click to toggle source
# File lib/boilerpipe/sax/tag_actions/inline_whitespace.rb, line 4
def start(handler, name, attrs)
  handler.append_space
  false
end