Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE Collection [
  3. <!ELEMENT Collection (Description,Recipe+)>
  4. <!ELEMENT Description (#PCDATA)>
  5. <!ELEMENT Recipe (Title,Ingredients,Preparation,Comment,Nutrients)>
  6. <!ELEMENT Title (#PCDATA)>
  7. <!ELEMENT Ingredients (Ingredient+)>
  8. <!ELEMENT Ingredient EMPTY>
  9. <!ATTLIST Ingredient name CDATA #REQUIRED>
  10. <!ATTLIST Ingredient qty CDATA #REQUIRED>
  11. <!ATTLIST Ingredient unit CDATA #REQUIRED>
  12. <!ELEMENT Preparation (Step+)>
  13. <!ELEMENT Step (#PCDATA)>
  14. <!ELEMENT Comment (#PCDATA)>
  15. <!ELEMENT Nutrients EMPTY>
  16. <!ATTLIST Nutrients proteins CDATA #REQUIRED>
  17. <!ATTLIST Nutrients carbs CDATA #REQUIRED>
  18. <!ATTLIST Nutrients fat CDATA #REQUIRED>
  19. <!ATTLIST Nutrients vitamins CDATA #REQUIRED>
  20. <!ATTLIST Nutrients calories CDATA #REQUIRED>
  21. ]>
  22. <Collection>
  23. <Description></Description>
  24. <Recipe>
  25. <Title></Title>
  26. <Ingredients>
  27. <Ingredient name="" qty="" unit=""/>
  28. <Ingredient name="" qty="" unit=""/>
  29. </Ingredients>
  30. <Preparation>
  31. <Step></Step>
  32. </Preparation>
  33. <Comment></Comment>
  34. <Nutrients proteins="" carbs="" fat="" vitamins="" calories=""/>
  35. </Recipe>
  36. </Collection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement