File: basic-table.rnc

package info (click to toggle)
jing-trang 20220510-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,960 kB
  • sloc: java: 51,292; xml: 22,675; sh: 463; python: 189; makefile: 34
file content (11 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
# Checks exclusions applying to basic-table module.
# This schema is intended to be used in addition to xhtml.rng.

default namespace = "http://www.w3.org/1999/xhtml"

start = normalElement
normalElement = element * - table { normalContent }
normalContent = (normalElement | tableElement | anyAttribute | text)*
tableElement = element table { tableContent }
tableContent = (element * - table { tableContent } | anyAttribute | text)*
anyAttribute = attribute * { text }