|
|
|
|
|
|
| / | Child nodes. |
| // | Descendant nodes. |
| | | Used to specify multiple nodes. |
| * | Wildcard. |
| @ | Attributes. |
| [ ] | Tests. |
| [n] | Position. |
| id() | Identifies nodes with a particular id. |
| descendant() | Like // |
| ancestor() | Identifies ancestor nodes. |
| preceding() | Identifies preceding nodes. |
| following() | Identifies nodes after the current node. |
| preceding-sibling() | Identifies sibling nodes that appear before the current node. |
| following-sibling() | Identifies sibling nodes that appear after the current node. |
| range-to() | Identifies a range. |