# HG changeset patch
# User Patrick PIERRE
# Date 1414405118 -3600
# Node ID b9e71a8ec71f5b1fe86e1fe2ac7096fa4614780b
# Parent  831dd5ed3256320fab37de5d1e7d854fb6499018
Simplification

diff -r 831dd5ed3256 -r b9e71a8ec71f RelaxNG/publiquiz.rnc
--- a/RelaxNG/publiquiz.rnc	dim. oct. 26 07:33:08 2014 +0100
+++ b/RelaxNG/publiquiz.rnc	lun. oct. 27 11:18:38 2014 +0100
@@ -528,7 +528,7 @@
 
 match.item.content =
    inlines
- | ((p | image | (audio, image?) | video), help?, answer?)
+ | (p, help?, answer?)
 
 # ~~~~~~~~~~~~~~~~~~~~~~~~ comparison, sort.item ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
@@ -546,7 +546,7 @@
 
 sort.item.content =
    inlines
- | ((p | image | (audio, image?) | video), help?, answer?)
+ | (p, help?, answer?)
 
 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ category.item ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
@@ -554,7 +554,7 @@
 
 category.item.content =
    inlines
- | ((p | image | (audio, image?) | video), help?, answer?)
+ | (p, help?, answer?)
 
 
 # =============================================================================