Help for this page

Select Code to Download


  1. or download this
    <items>
        <item>
    ...
        </item>
    </items>
    
  2. or download this
    <!ELEMENT bar (#PCDATA)>
    <!ELEMENT baz (#PCDATA)>
    <!ELEMENT foo (#PCDATA)>
    <!ELEMENT item (foo, bar, baz)>
    <!ELEMENT items (item+)>
    
  3. or download this
    <items>
        <item>
    ...
            <baz>z</baz>
        </item>
    </items>
    
  4. or download this
    <!ELEMENT bar (#PCDATA)>
    <!ELEMENT baz (#PCDATA)>
    <!ELEMENT foo (#PCDATA)>
    <!ELEMENT item (foo, bar, baz, item?)>
    <!ELEMENT items (item+)>