We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814bc57 commit c25de38Copy full SHA for c25de38
src/mods4pandas/mods4pandas.py
@@ -320,6 +320,10 @@ def only_standard_title(title_info):
320
elif tag == "{http://www.loc.gov/mods/v3}mods":
321
# XXX Ignore nested mods:mods for now (used in mods:subject)
322
pass
323
+ elif tag == "{http://www.loc.gov/mods/v3}issuance":
324
+ value["issuance"] = (
325
+ TagGroup(tag, group).is_singleton().has_no_attributes().text()
326
+ )
327
else:
328
if raise_errors:
329
raise ValueError('Unknown tag "{}"'.format(tag))
0 commit comments