Skip to content

Commit

Permalink
refactor date
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Oct 9, 2024
1 parent aeca0eb commit 6a32bc9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions grammars/biblio.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -798,10 +798,7 @@ BibliographicDateType =

## Significant date in the lifecycle of the bibliographic item, including its production and its access
bdate = element date {
## The phase of the production of or access to a bibliographic item
attribute type { ( BibliographicDateType | text ) },
## An optional textual description of the date, especially when a Gregorian date is not applicable
attribute text { text }?,
bDateAttributes,
(
(
## The start of the date range described
Expand All @@ -814,6 +811,12 @@ bdate = element date {
)?
}

bDateAttributes =
## The phase of the production of or access to a bibliographic item
attribute type { ( BibliographicDateType | text ) },
## An optional textual description of the date, especially when a Gregorian date is not applicable
attribute text { text }?

## An identifier of a bibliographic item in an international standard scheme
docidentifier = element docidentifier { DocIdentifierType }

Expand Down

0 comments on commit 6a32bc9

Please sign in to comment.