Hi, I'm trying (and failing!) to learn XSLT and XPath and have a (hopefully) simple question I'm hoping someone could help with. Ok, here goes ..... Are all XPath expressions evaluated relative to an axis? For example, given the following template:
<template match="element()">..</template>
Is the implicit child axis included as part of the element() node test i.e. is the expression actually evaluated as child::element()?
Andy