start = publidoc
publidoc = element publidoc {
publidoc.attributes,
publidoc.content
}
publidoc.attributes =
version.attribute
version.attribute = attribute version { "1.0" }
publidoc.content =
document
| glossary
| topic
# =============================================================================
# HEAD
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~ title, shorttitle, subtitle ~~~~~~~~~~~~~~~~~~~~~~~~~
title = element title { title.content }
shorttitle = element shorttitle { title.content }
subtitle = element subtitle { title.content }
title.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ identifier ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ identifier
identifier =
element identifier {
(attribute type { "ean" }, for.attribute?, xsd:token {pattern = "\d{13}"}) |
(attribute type { "uri" }, for.attribute?, xsd:anyURI)
}
# ~~~~~~ identifier.ean
identifier.ean =
element identifier {
attribute type { "ean" }, for.attribute?, xsd:token {pattern = "\d{13}"}
}
# ~~~~~~ identifier.uri
identifier.uri =
element identifier { attribute type { "uri" }, for.attribute?, xsd:anyURI }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ copyright ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
copyright = element copyright { copyright.content }
copyright.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ collection ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
collection = element collection { collection.content }
collection.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ contributors ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ contributors
contributors = element contributors { contributors.content }
contributors.content =
contributor+
# ~~~~~~ contributor
contributor = element contributor { contributor.content }
contributor.content =
identifier.uri?,
((firstname?, lastname) | label),
address?,
link?,
role+
# ~~~~~~ firstname, secondname, lastname, label
firstname = element firstname { firstname.content }
lastname = element lastname { lastname.content }
label = element label { label.content }
firstname.content = simple.inlines
lastname.content = simple.inlines
label.content = simple.inlines
# ~~~~~~ address
address = element address { address.content }
address.content = simple.inlines
# ~~~~~~ role
role = element role { role.content }
role.content =
"author" | "illustrator" | "publisher" | "packager" | "translator"
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ place ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
place = element place { place.content }
place.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ source ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
source =
element source {
( (attribute type { "book" }, bibliography.entry.content) |
(attribute type { "file" }, source.content.file) ),
source.content
}
source.content.file =
identifier.uri
source.content =
annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ keyword & subject ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ keywordset
keywordset = element keywordset { keywordset.content }
keywordset.content = keyword+
# ~~~~~~ keyword
keyword = element keyword { keyword.content }
keyword.content = simple.inlines
# ~~~~~~ subjectset
subjectset = element subjectset { subjectset.content }
subjectset.content = subject+
# ~~~~~~ subject
subject = element subject { subject.content }
subject.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ index ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ indexset
indexset = element indexset { indexset.content }
indexset.content = head.index+
# ~~~~~~ index
index = element index { index.content }
head.index = element index { head.index.content }
index.content =
(index.w, index.entry?)
| (index.entry, (index.w | index.entry)?)
head.index.content =
index.entry, index.entry?
# ~~~~~~ index.w
index.w = element w { simple.inlines }
# ~~~~~~ index.entry
index.entry = element entry { simple.inlines }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ abstract ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abstract = element abstract { abstract.content }
abstract.content =
p+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ cover ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cover = element cover { cover.content }
cover.content =
cover.image
cover.image = element image { cover.image.attributes }
cover.image.attributes =
media.id.attribute
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ annotation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
annotation = element annotation { annotation.content }
annotation.content =
inlines | p+
# =============================================================================
# DOCUMENT
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ document.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
document.head = element head { document.head.content }
document.head.content =
(title & shorttitle? & subtitle*)?
& identifier*
& copyright*
& collection?
& contributors?
& date?
& place?
& (source, source?)?
& keywordset?
& subjectset?
& indexset?
& abstract?
& cover?
& annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ document ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
document = element document { document.attributes, document.content }
document.attributes =
document.id.attribute?
& document.type.attribute?
& lang.attribute?
document.id.attribute = attribute id { xsd:NMTOKEN }
document.type.attribute = attribute type { xsd:NCName }
lang.attribute = attribute xml:lang { xsd:language }
document.content =
document.head?,
(division | document.topic | glossary)+
# =============================================================================
# GLOSSARY
# =============================================================================
glossary = element glossary { glossary.attributes, glossary.content }
glossary.attributes =
glossary.type.attribute?
& lang.attribute?
& langto.attribute?
glossary.type.attribute = attribute type { xsd:NCName }
langto.attribute = attribute langto { xsd:language }
glossary.content =
glossary.entry+
# =============================================================================
# DIVISION
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ division.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
division.head = element head { division.head.content }
division.head.content =
(title & shorttitle? & subtitle*)?
& indexset?
& abstract?
& annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ division ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
division = element division { division.attributes, division.content }
division.attributes =
division.type.attribute?
division.type.attribute = attribute type { xsd:NCName }
division.content =
division.head?,
front?,
(division | document.topic)+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ front ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
front = element front { front.content }
front.content =
section+
# =============================================================================
# COMPONENTS
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ component.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ component.head
component.head = element head { document.head.content }
# ~~~~~~ document.component.head
document.component.head = element head { document.component.head.content }
document.component.head.content =
(title & shorttitle? & subtitle*)?
& contributors?
& date?
& place?
& keywordset?
& subjectset?
& indexset?
& abstract?
& annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ topic ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
topic = element topic { topic.attributes, topic.content }
document.topic =
element topic { document.topic.attributes, document.topic.content }
topic.attributes =
topic.id.attribute?
& topic.type.attribute?
& lang.attribute?
document.topic.attributes =
(topic.id.attribute | xmlid.attribute)?
& topic.type.attribute?
& lang.attribute?
topic.id.attribute = attribute id { xsd:NMTOKEN }
topic.type.attribute = attribute type { xsd:NCName }
xmlid.attribute = attribute xml:id { xsd:ID }
topic.content =
component.head?,
header?,
((section+, bibliography?) | bibliography),
footer?
document.topic.content =
document.component.head?,
header?,
((section+, bibliography?) | bibliography),
footer?
# =============================================================================
# SECTION LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ section.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
section.head = element head { section.head.content }
section.head.content =
(title & shorttitle? & subtitle*)?
& keywordset?
& subjectset?
& indexset?
& abstract?
& audio*
& annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
header = element header { header.content }
header.content =
block+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ section ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
section = element section { section.attributes, section.content }
section.attributes =
xmlid.attribute?
& section.type.attribute?
& lang.attribute?
& for.attribute?
section.type.attribute = attribute type { xsd:NCName }
for.attribute = attribute for { xsd:NCName }
section.content =
section.head?,
(section+ | block+)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bibliography ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bibliography = element bibliography { bibliography.content }
bibliography.content =
bibliography.entry+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ footer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
footer = element footer { footer.content }
footer.content =
block+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ glossary.entry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ glossary.entry
glossary.entry=
element entry { glossary.entry.attributes, glossary.entry.content }
glossary.entry.attributes =
xmlid.attribute?
glossary.entry.content =
mainterm,
alt-terms?,
media?,
meanings+,
seealso*
# ~~~~~~ mainterm
mainterm = element mainterm { mainterm.content }
mainterm.content = simple.inlines
# ~~~~~~ alt-terms
alt-terms = element alt-terms { alt-terms.content }
alt-terms.content =
alt-term+
# ~~~~~~ alt-term
alt-term = element alt-term { alt-term.attributes, alt-term.content }
alt-term.content = inlines
alt-term.attributes =
alt-term.type.attribute?
alt-term.type.attribute = attribute type { xsd:NCName }
# =============================================================================
# BLOCK LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ block.head ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
block.head = element head { block.head.content }
block.head.content =
(title & shorttitle? & subtitle*)?
& indexset?
& annotation?
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ block ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
block = (p | \list | blockquote | speech | table | table.cals | media)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ p ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
p = element p { p.content }
p.content =
inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ list ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ list
\list =
element list {
block.head?,
( (list.type.attribute?, item, item+) |
(attribute type {"glossary"}, item.glossary+) ) }
list.type.attribute = attribute type {"ordered" | "alpha" | "Alpha" }
# ~~~~~~ item
item = element item { item.content }
item.content =
inlines
| block+
# ~~~~~~ item.glossary
item.glossary = element item { item.glossary.content }
item.glossary.content =
label,
block+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ blockquote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ blockquote
blockquote = element blockquote { blockquote.attributes, blockquote.content }
blockquote.attributes =
blockquote.type.attribute?
blockquote.type.attribute = attribute type { xsd:NCName }
blockquote.content =
block.head?,
(p | speech | \list)+,
attribution?
# ~~~~~~ attribution
attribution = element attribution { attribution.content }
attribution.content =
mixed {
sup* & number* & date* & name* & foreign* & acronym* & term* & literal*
& highlight* & emphasis* & mentioned* & note* & warning* }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ speech ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ speech
speech = element speech { speech.content }
speech.content =
speaker?,
stage?,
(p | blockquote)+
# ~~~~~~ speaker
speaker = element speaker { speaker.content }
speaker.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ table ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ table
table = element table { table.attributes, table.content }
table.attributes =
table.type.attribute?
table.type.attribute = attribute type { xsd:NCName }
table.content =
block.head?,
((thead?, tbody+) | tr+),
table.caption?
# ~~~~~~ thead, tbody
thead = element thead { thead.content }
tbody = element tbody { tbody.content }
thead.content =
tr+
tbody.content =
tr+
# ~~~~~~ tr
tr = element tr { tr.attributes, tr.content }
tr.attributes =
align.attribute?
& valign.attribute?
& cell.type.attribute?
align.attribute = attribute align { "left" | "right" | "center" | "justify" }
valign.attribute = attribute valign { "top" | "middle" | "bottom" }
cell.type.attribute = attribute type { xsd:NCName }
tr.content =
(td | th)+
# ~~~~~~ td, th
td = element td { td.attributes, td.content }
th = element th { td.attributes, td.content }
td.attributes =
align.attribute?
& valign.attribute?
& colspan.attribute?
& rowspan.attribute?
& cell.type.attribute?
colspan.attribute = attribute colspan { xsd:positiveInteger }
rowspan.attribute = attribute rowspan { xsd:positiveInteger }
td.content =
inlines
| (p | media)+
# ~~~~~~ table.caption
table.caption = element caption { caption.content }
caption.content =
inlines
| (p | speech | \list | blockquote)+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ table.cals ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ table.cals
table.cals = element table { table.attributes, table.cals.content }
table.cals.content =
block.head?,
tgroup+,
table.caption?
# ~~~~~~ tgroup
tgroup = element tgroup { tgroup.attributes, tgroup.content }
tgroup.attributes =
cols.attribute
cols.attribute = attribute cols { xsd:positiveInteger }
tgroup.content =
thead.cals?,
tbody.cals
# ~~~~~~ thead, tbody
thead.cals = element thead { thead.cals.content }
tbody.cals = element tbody { tbody.cals.content }
thead.cals.content =
row+
tbody.cals.content =
row+
# ~~~~~~ row
row = element row { row.attributes, row.content }
row.attributes =
valign.attribute?
row.content =
table.cals.entry+
# ~~~~~~ table.cals.entry
table.cals.entry =
element entry { table.cals.entry.attributes, table.cals.entry.content }
table.cals.entry.attributes =
align.attribute?
& valign.attribute?
table.cals.entry.content =
inlines
| (p | media)+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ media ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ media
media = element media { media.attributes, media.content }
media.attributes =
xmlid.attribute?
& media.type.attribute?
media.type.attribute = attribute type { xsd:NCName }
media.content =
block.head?,
(media.image | audio | video)+,
media.caption?,
link?
# ~~~~~~ image
image = element image { image.attributes }
media.image = element image { image.attributes, media.image.content }
image.attributes =
media.id.attribute
& image.type.attribute?
& image.zoom.attribute?
& alt.attribute?
media.id.attribute = attribute id { xsd:NMTOKEN }
image.type.attribute =
attribute type { "cover" | "thumbnail" | "icon" | "animation" }
image.zoom.attribute = attribute zoom {"true" | "false"}
alt.attribute = attribute alt { text }
media.image.content =
copyright?,
hotspot*
# ~~~~~~ audio
audio = element audio { audio.attributes }
audio.attributes =
media.id.attribute
& audio.type?
audio.type =
attribute type { "music" | "voice" | "en" | "fr" | "background" | "smil" }
# ~~~~~~ video
video = element video { video.attributes }
video.attributes =
media.id.attribute
# ~~~~~~ media.caption
media.caption = element caption { caption.attributes, caption.content }
caption.attributes =
x.attribute?
& y.attribute?
# ~~~~~~ hotspot
hotspot = element hotspot { hotspot.attributes, hotspot.content }
hotspot.attributes =
x.attribute
& y.attribute
& w.attribute
& h.attribute?
& hotspot.display.attribute?
& hotspot.type.attribute?
& xmlid.attribute?
x.attribute = attribute x { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
y.attribute = attribute y { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
w.attribute = attribute w { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
h.attribute = attribute h { xsd:token {pattern = "\d{1,2}(\.\d{1,2})?%"} }
hotspot.display.attribute = attribute display { "normal" | "visible" | "pulse" }
hotspot.type.attribute = attribute type { xsd:NCName }
hotspot.content =
((link | p+ | image | audio | video), (spot, scenario?)?)
| (spot, scenario?)
| empty
# ~~~~~~ spot
spot = element spot { spot.attributes, spot.content }
spot.attributes =
dx.attribute?
& dy.attribute?
& dw.attribute?
& dh.attribute?
dx.attribute = attribute dx { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
dy.attribute = attribute dy { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
dw.attribute = attribute dw { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
dh.attribute = attribute dh { xsd:token {pattern = "-?\d{1,2}(\.\d{1,2})?%"} }
spot.content =
((p+ | image), audio?)
| audio
| video
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ scenario ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ scenario
scenario = element scenario { scenario.content }
scenario.content =
init*,
onclick*
# ~~~~~~ init
init = element init { init.attributes }
init.attributes =
init.action.attribute
& target.attribute?
init.action.attribute = attribute action { "hide" }
target.attribute = attribute target { "hotspot" | "spot" }
# ~~~~~~ onclick
onclick = element onclick { onclick.attributes }
onclick.attributes =
onclick.action.attribute
& target.attribute?
onclick.action.attribute = attribute action { "show" }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bibliography.entry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ bibliography.entry
bibliography.entry = element entry { bibliography.entry.content }
bibliography.entry.content =
identifier.ean?
& title
& subtitle?
& copyright?
& collection?
& contributors?
& date?
& place?
& folio?
& pages?
# ~~~~~~ folio
folio = element folio { folio.content }
folio.content = xsd:positiveInteger | xsd:token {pattern = "[DLXVI]+"}
# ~~~~~~ pages
pages = element pages { pages.content }
pages.content = xsd:positiveInteger
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ meanings ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ meanings
meanings = element meanings { meanings.attributes, meanings.content }
meanings.attributes =
gramcode.attribute?
gramcode.attribute = attribute gramcode { xsd:NMTOKEN }
meanings.content =
meaning+
# ~~~~~~ meaning
meaning = element meaning { meaning.attributes, meaning.content }
meaning.attributes =
meaning.domain.attribute?
& langlevel.attribute?
meaning.domain.attribute = attribute domain { xsd:NMTOKEN }
langlevel.attribute = attribute langlevel { xsd:NMTOKEN }
meaning.content =
((definition, example*, synonym*, antonym*, translation*)
| (definition?, example*, synonym*, antonym*, translation+)
| (definition?, example*, synonym+, antonym*, translation*)
| (definition?, example*, synonym*, antonym+, translation*)),
dictum*
# ~~~~~~ definition
definition = element definition { inlines }
# ~~~~~~ synonym, antonym
synonym = element synonym { simple.inlines }
antonym = element antonym { simple.inlines }
# ~~~~~~ translation
translation = element translation { simple.inlines }
# ~~~~~~ dictum
dictum = element dictum { dictum.content }
dictum.content = p+
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ seealso ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
seealso = element seealso { seealso.attributes }
seealso.attributes =
gloss.ref.attribute
# =============================================================================
# INLINE LEVEL
# =============================================================================
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ inlines ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
simple.inlines =
mixed {
sup* & sub*
& var*
& number*
& acronym*
& warning*
}
inlines =
mixed {
sup* & sub*
& var*
& number*
& acronym*
& warning*
& highlight*
& emphasis*
& mentioned*
& literal*
& term*
& example*
& stage*
& name*
& foreign*
& date*
& math*
& quote*
& initial*
& note*
& link*
& anchor*
& index*
& gloss*
& image*
& audio*
& smil*
& nowrap*
}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sub, sup, var ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sup = element sup { mixed { var* & warning* } }
sub = element sub { mixed { var* & warning* } }
var = element var { mixed { warning* } }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ number ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
number =
element number {
( attribute type {"roman"}, number.attributes, number.roman.content ) |
( number.attributes, number.content)
}
number.attributes =
number.value.attribute?
number.value.attribute = attribute value { xsd:integer | xsd:decimal }
number.content = mixed { sup* & warning* }
number.roman.content = xsd:token {pattern = "[MCLXVI]+"}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ acronym ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
acronym = element acronym { acronym.content }
acronym.content = mixed { sup* & warning* }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ highlight ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
highlight = element highlight { highlight.content }
highlight.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ emphasis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
emphasis = element emphasis { emphasis.content }
emphasis.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ mentioned ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
mentioned = element mentioned { mentioned.content }
mentioned.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ literal ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
literal = element literal { literal.content }
literal.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ term ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
term = element term { term.content }
term.content = mixed { sup* & warning* }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ example ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
example = element example { example.content }
example.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ stage ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
stage = element stage { stage.content }
stage.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ name ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
name = element name { name.attributes, name.content }
name.attributes =
name.of.attribute?
name.of.attribute =
attribute of {
"person" | "company" | "book" | "newspaper" | "party" | "movie"
| "painting" }
name.content = mixed { sup* & number* & acronym* & warning* }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ foreign ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
foreign = element foreign { foreign.attributes, foreign.content }
foreign.attributes =
lang.attribute?
foreign.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ date ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
date = element date { date.attributes, date.content }
date.attributes =
date.value.attribute
& date.of.attribute?
date.value.attribute = attribute value { xsd:date | xsd:gYearMonth | xsd:gYear }
date.of.attribute = attribute of { "birth" | "death" }
date.content = mixed { sup* & number* & warning* }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ math ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~ math
math = element math { math.attributes, math.content }
math.attributes =
xmlid.attribute?
& math.display.attribute?
& math.type.attribute?
math.display.attribute =
attribute display { "wide" | "numbered" | "box" | "numbered-box" }
math.type.attribute = attribute type { xsd:NCName }
math.content =
mixed { sup* & sub* & var* & warning* }
| (preambule?, latex)
# ~~~~~~ latex
latex = element latex { latex.attributes, latex.content }
latex.attributes =
plain.attritute?
plain.attritute = attribute plain { xsd:boolean }
latex.content = text
# ~~~~~~ preambule
preambule = element preambule { preambule.content }
preambule.content =
newcommand+
# ~~~~~~ newcommand
newcommand = element newcommand { newcommand.attributes, newcommand.content }
newcommand.attributes =
newcommand.name.attribute
newcommand.name.attribute = attribute name { xsd:NMTOKEN }
newcommand.content = text
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ quote ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
quote = element quote { quote.content }
quote.content =
(phrase, attribution) | inlines
phrase = element phrase { phrase.content }
phrase.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ initial ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
initial = element initial { initial.content }
initial.content =
initial.c,
initial.w?
initial.c = element c { text }
initial.w = element w { inlines }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ note ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
note = element note { note.attributes, note.content }
note.attributes =
note.label.attribute?
note.label.attribute = attribute label { text }
note.content =
(note.w?, block+)
| inlines
note.w = element w { inlines }
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ link ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
link = element link { link.attributes, link.content }
link.attributes =
(uri.attribute | idref.attribute)
uri.attribute = attribute uri { xsd:anyURI }
idref.attribute = attribute idref { xsd:IDREF }
link.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ anchor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
anchor = element anchor { anchor.attributes, anchor.content }
anchor.attributes =
anchor.id.attribute
anchor.id.attribute = attribute xml:id { xsd:ID }
anchor.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gloss ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gloss = element gloss { gloss.attributes, gloss.content }
gloss.attributes =
gloss.ref.attribute
gloss.ref.attribute = attribute ref { xsd:NCName }
gloss.content = simple.inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ smil ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
smil = element smil { smil.attributes, smil.content }
smil.attributes =
audio.attribute?
& begin.attribute?
& end.attribute?
audio.attribute = attribute audio { xsd:anyURI }
begin.attribute = attribute begin { xsd:decimal }
end.attribute = attribute end { xsd:decimal }
smil.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ nowrap ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nowrap = element nowrap { nowrap.content }
nowrap.content = inlines
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ warning ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
warning = element warning { warning.attributes, warning.content }
warning.attributes =
warning.type.attribute?
warning.type.attribute = attribute type { xsd:NCName }
warning.content = inlines