class Xlsxrb::Ooxml::Reader::RelsListener
SAX2 listener for parsing .rels files to map rId to Target.
Attributes
Public Class Methods
Public Instance Methods
# File lib/xlsxrb/ooxml/reader.rb, line 2221 def start_element(_uri, local_name, qname, attributes) name = element_name(local_name, qname) return unless name == "Relationship" @relationships << { id: attributes["Id"], target: attributes["Target"], type: attributes["Type"] } end