xml/komentář.xsd
author František Kučera <franta-hg@frantovo.cz>
Mon Nov 07 20:31:08 2011 +0100 (2011-11-07)
changeset 196 27b751390163
parent 145 0efefbf5f8b6
permissions -rwxr-xr-x
XSD: lepší schéma pro komentáře a povolíme blockquote.
     1 <?xml version="1.0" encoding="UTF-8" ?>
     2 
     3 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
     4 
     5 	<xs:element name="div" type="blokovýElement" />
     6 
     7 	<xs:complexType name="blokovýElement">
     8 		<xs:choice minOccurs="1" maxOccurs="unbounded">
     9 			<xs:element name="p" type="řádkovýElement" />
    10 			<xs:element name="blockquote">
    11 				<xs:complexType mixed="false">
    12 					<xs:choice minOccurs="1" maxOccurs="unbounded">
    13 						<xs:element name="p" type="řádkovýElement" />
    14 					</xs:choice>
    15 				</xs:complexType>
    16 			</xs:element>
    17 		</xs:choice>
    18 	</xs:complexType>
    19 
    20 	<xs:complexType name="řádkovýElement" mixed="true">
    21 		<xs:choice minOccurs="0" maxOccurs="unbounded">
    22 			<xs:element name="em" type="řádkovýElement">
    23 				<xs:annotation>
    24 					<xs:documentation>Zvýrazněné písmo – obvykle kurzíva.</xs:documentation>
    25 				</xs:annotation>
    26 			</xs:element>
    27 			<xs:element name="strong" type="řádkovýElement">
    28 				<xs:annotation>
    29 					<xs:documentation>Zvýrazněné písmo – obvykle tučné.</xs:documentation>
    30 				</xs:annotation>
    31 			</xs:element>
    32 			<xs:element name="br" type="prázdnýElement">
    33 				<xs:annotation>
    34 					<xs:documentation>Zalomení řádku.</xs:documentation>
    35 				</xs:annotation>
    36 			</xs:element>
    37 		</xs:choice>
    38 	</xs:complexType>
    39 
    40 	<xs:complexType name="prázdnýElement">
    41 		<xs:complexContent>
    42 			<xs:restriction base="xs:anyType" />
    43 		</xs:complexContent>
    44 	</xs:complexType>
    45 
    46 </xs:schema>