diff options
| author | Zachary Ferguson <zfergus2@users.noreply.github.com> | 2015-10-15 14:48:59 -0400 | 
|---|---|---|
| committer | Zachary Ferguson <zfergus2@users.noreply.github.com> | 2015-10-15 14:48:59 -0400 | 
| commit | 65bb71f4bde383a4d0b8cd6fd49901bb6e2cfa5f (patch) | |
| tree | 03802f50ac31b295ace0585ccb6bc1ea6ef9b612 /xml.html.markdown | |
| parent | a4ea3961744c3c1ee6fcf654f011caa8dbadf56e (diff) | |
| parent | 68953bd9d97328b8660dad06edd8acb8ff330ede (diff) | |
Merge remote-tracking branch 'refs/remotes/adambard/master'
Conflicts:
	c.html.markdown
Diffstat (limited to 'xml.html.markdown')
| -rw-r--r-- | xml.html.markdown | 13 | 
1 files changed, 7 insertions, 6 deletions
| diff --git a/xml.html.markdown b/xml.html.markdown index d407512d..efc2340f 100644 --- a/xml.html.markdown +++ b/xml.html.markdown @@ -7,7 +7,7 @@ contributors:  XML is a markup language designed to store and transport data. -Unlike HTML, XML does not specify how to display or to format data, just carry it. +Unlike HTML, XML does not specify how to display or to format data, it just carries it.  * XML Syntax @@ -40,13 +40,14 @@ Unlike HTML, XML does not specify how to display or to format data, just carry i    It starts with a declaration, informing some metadata (optional).    XML uses a tree structure. Above, the root node is 'bookstore', which has -  three child nodes, all 'books'. Those nodes has more child nodes, and so on... +  three child nodes, all 'books'. Those nodes have more child nodes (or +  children), and so on... -  Nodes are created using open/close tags, and childs are just nodes between +  Nodes are created using open/close tags, and children are just nodes between    the open and close tags.--> -<!-- XML carries two kind of data: +<!-- XML carries two kinds of data:    1 - Attributes -> That's metadata about a node.        Usually, the XML parser uses this information to store the data properly.        It is characterized by appearing with the format name="value" within the opening @@ -82,7 +83,7 @@ With this tool, you can check the XML data outside the application logic.  <!DOCTYPE note SYSTEM "Bookstore.dtd">  <bookstore>    <book category="COOKING"> -    <title >Everyday Italian</title> +    <title>Everyday Italian</title>      <price>30.00</price>    </book>  </bookstore> @@ -120,7 +121,7 @@ With this tool, you can check the XML data outside the application logic.  <bookstore>    <book category="COOKING"> -    <title >Everyday Italian</title> +    <title>Everyday Italian</title>      <price>30.00</price>    </book>  </bookstore> | 
