Created
January 9, 2016 00:35
-
-
Save labra/4a281c13b6e2dd1f7f1e to your computer and use it in GitHub Desktop.
Ejemplo de DTD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!ELEMENT pedido (producto)*> | |
<!ELEMENT producto (nombre, cantidad,comentarios, precio?)> | |
<!ELEMENT nombre (#PCDATA)> | |
<!ELEMENT cantidad (#PCDATA)> | |
<!ELEMENT comentarios (#PCDATA)> | |
<!ELEMENT precio (#PCDATA)> | |
<!ATTLIST producto codigo CDATA #REQUIRED> | |
<!ATTLIST precio moneda CDATA #IMPLIED> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment