Skip to content

Commit

Permalink
allow footnotes on notes and examples paragraphs
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Nov 10, 2024
1 parent 6aee64d commit a64c3fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions grammars/isodoc.rnc
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ references =

## Content of note
NoteBody =
(paragraph | ul | ol | dl | formula | quote | sourcecode)+
(paragraph-with-footnote | ul | ol | dl | formula | quote | sourcecode)+

## Group of blocks within text, which is a leaf node in the hierarchical organisation of text (does not contain any sections of its own)
Basic-Section =
Expand Down Expand Up @@ -208,7 +208,7 @@ ThBody =

table-note = element note {
OptionalId,
paragraph+
paragraph-with-footnote+
}

## Subscript text. Corresponds to HTML `sub
Expand Down Expand Up @@ -1028,7 +1028,7 @@ termdefinition =

verbaldefinition = element verbal-definition {
## Content of the verbal representation of the term
(paragraph | dl | ol | ul | table | figure | formula)+,
(paragraph-with-footnote | dl | ol | ul | table | figure | formula)+,
## Bibliographic references for this designation of the managed term
TermSource
}
Expand All @@ -1048,15 +1048,15 @@ termnote =
NumberingAttributes,
BlockAttributes,
## Content of the term note
(paragraph | ul | ol | dl | formula)+
(paragraph-with-footnote | ul | ol | dl | formula)+
}

termexample =
element termexample {
RequiredId,
BlockAttributes,
## Content of the term example
( formula | ul | ol | dl | quote | sourcecode | paragraph | figure )+
( formula | ul | ol | dl | quote | sourcecode | paragraph-with-footnote | figure )+
}

## The bibliographic source where a term is defined in the sense applicable in this standardisation document
Expand Down

0 comments on commit a64c3fa

Please sign in to comment.