Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions bin/anthology/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,6 @@ def parse_element(
return attrib

for element in xml_element:
if element.tag is etree.Comment:
continue

# parse value
tag = element.tag.lower()
if tag in dont_parse_elements:
Expand Down
9 changes: 3 additions & 6 deletions data/xml/2023.ws.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
<collection id="2023.ws">
<event id="ws-2023">
<colocated>
<!-- Unsorted -->
<volume-id>2023.computel-1</volume-id>
<volume-id note="unsorted">2023.computel-1</volume-id>
<volume-id>2023.wsc-csdh</volume-id>
<volume-id>2023.depling-1</volume-id>
<volume-id>2023.cxgsnlp-1</volume-id>
<volume-id>2023.tlt-1</volume-id>
<volume-id>2023.udw-1</volume-id>
<volume-id>2023.resourceful-1</volume-id>
<volume-id>2023.nlp4call-1</volume-id>
<!-- EACL 2023 -->
<volume-id>2023.bsnlp-1</volume-id>
<volume-id note="eacl">2023.bsnlp-1</volume-id>
<volume-id>2023.c3nlp-1</volume-id>
<volume-id>2023.fever-1</volume-id>
<volume-id>2023.fieldmatters-1</volume-id>
Expand All @@ -24,8 +22,7 @@
<volume-id>2023.sigtyp-1</volume-id>
<volume-id>2023.unlp-1</volume-id>
<volume-id>2023.vardial-1</volume-id>
<!-- ACL 2023 -->
<volume-id>2023.americasnlp-1</volume-id>
<volume-id note="acl">2023.americasnlp-1</volume-id>
<volume-id>2023.bea-1</volume-id>
<volume-id>2023.bionlp-1</volume-id>
<volume-id>2023.cawl-1</volume-id>
Expand Down
2 changes: 1 addition & 1 deletion data/xml/schema.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Event = element event {
& element links { url* }?
& Talk*
& element colocated {
element volume-id { text }*
element volume-id { attribute note { xsd:string }?, text }*
}?
)
}
Expand Down