openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class FontCharacterSet < OpenXml::Docx::Element
        namespace :w
        tag :charset

        with_namespace :w do
          attribute :character_set, expects: :string, displays_as: :characterSet
        end

      end
    end
  end
end