openxml/openxml-docx

View on GitHub
lib/openxml/docx/elements/deleted_text.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class DeletedText < Text
        tag :del
        attribute :space, one_of: [:preserve, nil], namespace: :xml
      end
    end
  end
end