Skip to content

Instantly share code, notes, and snippets.

@ncancelliere
Created November 15, 2009 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncancelliere/235268 to your computer and use it in GitHub Desktop.
Save ncancelliere/235268 to your computer and use it in GitHub Desktop.
<foods>
<veggies>
<veggie>
<name>carrot</name>
<color>orange</color>
<tags>
<tag>juicing</tag>
<tag>raw</tag>
<tag>roasted</tag>
</tags>
</veggie>
<veggie>
<name>tomato</name>
<color>red</name>
<tags>
<tag>raw</tag>
<tag>juicing</tag>
<tag>roasted</tag>
</tags>
</veggie>
<veggie>
<name>corn</name>
<color>yellow</color>
<tags>
<tag>raw</tag>
<tag>boiled</tag>
<tag>grilled</tag>
</tags>
</veggie>
</veggies>
<fruits>
<fruit>
<name>grapes</name>
<color>purple</color>
<tags>
<tag>raw</tag>
<tag>juicing</tag>
</tags>
</fruit>
<fruit>
<name>orange</name>
<color>orange</color>
<tags>
<tag>raw</tag>
<tag>juicing</tag>
</tags>
</fruit>
<fruit>
<name>pear</name>
<color>yellow</color>
<tags>
<tag>raw</tag>
<tag>baked</tag>
</tags>
</fruit>
<fruit>
<name>apple</name>
<color>red</color>
<tags>
<tag>raw</tag>
<tag>baked</tag>
<tag>juicing</tag>
</tags>
</fruit>
</fruits>
</foods>
@houhoulis
Copy link

there is a missing [fruit] tag to enclose [name]orange[/name]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment