| 1 |
type Special = Xbr | Xspan | Xbdo | Xmap | Xobject | Ximg;;
|
| 2 |
type Fontstyle = Xtt | Xi | Xb | Xbig | Xsmall;;
|
| 3 |
type Phrase = Xem | Xstrong | Xdfn | Xcode | Xq |
|
| 4 |
Xsamp | Xkbd | Xvar | Xcite | Xabbr | Xacronym | Xsub | Xsup;;
|
| 5 |
type InlineForms = Xinput | Xselect | Xtextarea | Xlabel | Xbutton;;
|
| 6 |
type MiscInline = Xins | Xdel | Xscript;;
|
| 7 |
type Misc = Xnoscript | MiscInline;;
|
| 8 |
type Inline = Xa | Special | Fontstyle | Phrase | InlineForms;;
|
| 9 |
type Inlines = [ (Char | Inline | MiscInline)* ];;
|
| 10 |
|
| 11 |
type Heading = Xh1 | Xh2 | Xh3 | Xh4 | Xh5 | Xh6;;
|
| 12 |
type Lists = Xul | Xol | Xdl;;
|
| 13 |
type Blocktext = Xpre | Xhr | Xblockquote | Xaddress;;
|
| 14 |
type Block = Xp | Heading | Xdiv | Lists | Blocktext | Xfieldset | Xtable;;
|
| 15 |
type Blocks = [ (Block | Xform | Misc)* ];;
|
| 16 |
|
| 17 |
type Flow = [ (Char | Block | Xform | Inline | Misc)* ];;
|