File: basic-table.rnc

package info (click to toggle)
jing-trang 20091111-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,312 kB
  • ctags: 10,531
  • sloc: java: 50,336; xml: 24,925; sh: 451; makefile: 50
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 }