Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 23, 2014 19:42
Show Gist options
  • Save Fhernd/766e6f716c8c023dc61f to your computer and use it in GitHub Desktop.
Save Fhernd/766e6f716c8c023dc61f to your computer and use it in GitHub Desktop.
Archivo XML con validación DTD.
<?xml version="1.0" encoding="UTF-8"?>
<!-- DTD: -->
<!DOCTYPE almacen [
<!ELEMENT almacen (producto)*>
<!ELEMENT producto (nombre,precio)>
<!ATTLIST producto tipo CDATA #REQUIRED>
<!ELEMENT nombre (#PCDATA)>
<!ELEMENT precio (#PCDATA)>
]>
<almacen>
<producto tipo="mouse">
<nombre>Inalambrico C50</nombre>
<precio>20000</precio>
</producto>
<producto tipo="monitor">
<nombre>Monitor Acer V173</nombre>
<precio>200000</precio>
<marca>Acer</marca>
</producto>
<producto>
<nombre>Lumia 1020</nombre>
<precio>1050000</precio>
</producto>
</almacen>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment