Skip to content

Instantly share code, notes, and snippets.

@yvan-sraka
Last active November 6, 2017 17:24
Show Gist options
  • Save yvan-sraka/07a26e593e75f14fa49c5cb540f48e96 to your computer and use it in GitHub Desktop.
Save yvan-sraka/07a26e593e75f14fa49c5cb540f48e96 to your computer and use it in GitHub Desktop.
Example of a XML file structuring books data
<books>
<programming>
<book>
<name>Apprendre à coder en PHP</name>
<price>26.00</price>
<author>Matthieu Nebra</author>
</book>
<book>
<name>Learn you a Haskell</name>
<price>0.00</price>
<author>Miron Lipovaca</author>
</book>
<book>
<name>Land of Lisp</name>
<price>49.99</price>
<author>Conrad Barski</author>
</book>
</programming>
<cooking>
<book>
<name>50 Amazing vegan recipes</name>
<price>19.99</price>
<author>Peter Hock</author>
</book>
</cooking>
</books>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment