<article title="red"
canvas="yellow">
<section>
<title>First
section</title>
<sentence>Some
text.</sentence>
<sentence>More
text.</sentence>
</section>
<ns:appendix xmlns:ns="none"/>
</article>
|
| | / | |
|
| | /article | |
|
| | /article/title | |
|
| | //@canvas | all the attribute nodes named ‘canvas’ |
|
| | //@* | |
|
| | ./sentence | the children node elements ‘sentence’ of the
current node |
|
| | ./* | all the children element nodes of the current node |
|
| | ./*/sentence | all the grandchildren node elements named
‘sentence’ of the context node |
|
| | ./@* | all the children attribute nodes of the current node |
|
| | .// | all the descendant element nodes of the current
node |
|
| | //ns:appendix | all the ‘ns:appendix’ element nodes of the
document |
|