Sha256: 703c2bc4539f87add28eaffc1ce4c59d3ad34de1db8aae2f35312cd0c47a1dd4
Contents?: true
Size: 375 Bytes
Versions: 48
Compression:
Stored size: 375 Bytes
Contents
module Krikri ## # A MODS parser. Uses XML parser with a root path to match the # metadata path. # @see Krikri::XmlParser class ModsParser < XmlParser include Krikri::OaiParserHeaders def initialize(record, root_path = '//mods:mods', ns = {}) ns = { mods: 'http://www.loc.gov/mods/v3' }.merge(ns) super(record, root_path, ns) end end end
Version data entries
48 entries across 48 versions & 1 rubygems