Created
May 18, 2010 07:10
-
-
Save siddarth/404719 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!-- example from http://www.w3schools.com/xml/xml_tree.asp --> | |
| <bookstore> | |
| <book category="COOKING"> | |
| <title lang="en">Everyday Italian</title> | |
| <author>Giada De Laurentiis</author> | |
| <year>2005</year> | |
| <price>30.00</price> | |
| </book> | |
| <book category="CHILDREN"> | |
| <title lang="en">Harry Potter</title> | |
| <author>J K. Rowling</author> | |
| <year>2005</year> | |
| <price>29.99</price> | |
| </book> | |
| <book category="WEB"> | |
| <title lang="en">Learning XML</title> | |
| <author>Erik T. Ray</author> | |
| <year>2003</year> | |
| <price>39.95</price> | |
| </book> | |
| </bookstore> |
toannguyen214
commented
May 4, 2026
<title lang="en">Everyday Italian</title>
Giada De Laurentiis
2005
30.00
<title lang="en">Harry Potter</title>
J K. Rowling
2005
29.99
<title lang="en">Learning XML</title>
Erik T. Ray
2003
39.95
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment