Class: Markbridge::AST::TableRow
- Defined in:
- lib/markbridge/ast/table.rb
Overview
Represents a table row containing cells.
Instance Attribute Summary
Attributes inherited from Element
Instance Method Summary collapse
-
#<<(child) ⇒ Object
See Table#<< — same whitespace skip for ‘<tr>` / `<td>` gaps.
Methods inherited from Element
Constructor Details
This class inherits a constructor from Markbridge::AST::Element
Instance Method Details
#<<(child) ⇒ Object
See Table#<< — same whitespace skip for ‘<tr>` / `<td>` gaps.
28 29 30 31 32 |
# File 'lib/markbridge/ast/table.rb', line 28 def <<(child) return self if child.instance_of?(Text) && child.text.strip.empty? super end |