Sha256: 9d4b13bf909bbef53ed9f90d8ec15fc75527d1fa919ec5ecf16b7f1bf9cbf22d
Contents?: true
Size: 682 Bytes
Versions: 2
Compression:
Stored size: 682 Bytes
Contents
module OpenXml module Docx module Elements class EmbedBold < Element namespace :w with_namespace :w do attribute :font_key, expects: :bracketed_guid, displays_as: :fontKey attribute :subsetted, expects: :true_or_false end attribute :relationship_id, expects: :string, displays_as: :id, namespace: :r private def bracketed_guid(value) guid_regex = /\{[0-9A-F]{8}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{12}\}/ # Regex taken from spec section 22.9.2.4 raise ArgumentError, "Not a validly-formatted GUID" unless value =~ guid_regex end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openxml-docx-0.10.1 | lib/openxml/docx/elements/embed_bold.rb |
openxml-docx-0.10.0 | lib/openxml/docx/elements/embed_bold.rb |