Last active
November 6, 2017 17:24
-
-
Save yvan-sraka/07a26e593e75f14fa49c5cb540f48e96 to your computer and use it in GitHub Desktop.
Example of a XML file structuring books data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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