openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class Break < OpenXml::Docx::Element
        tag :br

        with_namespace :w do
          attribute :clear, one_of: %i(all left none right)
          attribute :type, one_of: %i(column page textWrapping)
        end

      end
    end
  end
end