Class: RelatonIsoBib::XMLParser

Inherits:
RelatonBib::XMLParser
  • Object
show all
Defined in:
lib/relaton_iso_bib/xml_parser.rb

Class Method Summary collapse

Class Method Details

.from_xml(xml) ⇒ RelatonIsoBib::IsoBibliographicItem

Override RelatonBib::XMLParser.form_xml method.



9
10
11
12
13
# File 'lib/relaton_iso_bib/xml_parser.rb', line 9

def from_xml(xml)
  doc = Nokogiri::XML(xml)
  isoitem = doc.at "/bibitem|/bibdata"
  IsoBibliographicItem.new item_data(isoitem)
end