vid 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <!DOCTYPE iddemo [
  3. <!ELEMENT iddemo (head?, (chapter)*)>
  4. <!ATTLIST iddemo id ID #IMPLIED>
  5. <!ELEMENT head (title?, (p)*)>
  6. <!ATTLIST head id ID #IMPLIED>
  7. <!ELEMENT chapter (title?, (p | image)*)>
  8. <!ATTLIST chapter id ID #IMPLIED>
  9. <!ELEMENT image EMPTY>
  10. <!ATTLIST image href CDATA #IMPLIED>
  11. <!ELEMENT title (#PCDATA)>
  12. <!ELEMENT p (#PCDATA)>
  13. ]>
  14. <iddemo>
  15. <head>
  16. <title>Welcome to Gnome</title>
  17. </head>
  18. <chapter id="chapter1">
  19. <title>The Linux adventure</title>
  20. <p>bla bla bla ...</p>
  21. <image href="linus.gif"/>
  22. <p>...</p>
  23. <p>third p</p>
  24. <p>fourth p</p>
  25. </chapter>
  26. <chapter id="chapter2">
  27. <title>Chapter 2</title>
  28. <p>this is chapter 2 ...</p>
  29. </chapter>
  30. <chapter id="chapter3">
  31. <title>Chapter 3</title>
  32. <p>this is chapter 3 ...</p>
  33. </chapter>
  34. <chapter id="chapter4">
  35. <title>Chapter 4</title>
  36. <p>this is chapter 4 ...</p>
  37. </chapter>
  38. <chapter id="chapter5">
  39. <title>Chapter 5</title>
  40. <p>this is chapter 5 ...</p>
  41. </chapter>
  42. </iddemo>