openxml/openxml-docx

View on GitHub
lib/openxml/docx/properties/emphasis.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class Emphasis < ValueProperty
        tag :em

        def ok_values
          %i(circle comma dot none underDot)
        end

      end
    end
  end
end