Method: ODF::Span#xml

Defined in:
lib/odf/span.rb

#xmlObject



45
46
47
48
49
50
# File 'lib/odf/span.rb', line 45

def xml
  return content_parts_xml if @style.nil?
  Builder::XmlMarkup.new.text:span, 'text:style-name' => @style do |xml|
    xml << content_parts_xml
  end
end