Class: RubyDocx::Convertor::Html::Td
- Defined in:
- lib/ruby_docx/convertors/elements/html/td.rb
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from RubyDocx::Convertor::Html::Base
Instance Method Details
#convert ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/ruby_docx/convertors/elements/html/td.rb', line 3 def convert node = RubyDocx::Paragraph.new tag.children.each do |child| child_node = if child.is_a?(Nokogiri::XML::Text) RubyDocx::Row.new(child.content) if child.content.present? else RubyDocx::Convertor::Html.create_node(child, css) end node.append(child_node) if child_node end RubyDocx::TableColumn.new(nil, [], [node]) end |