I have a question about how to use the select attribute in apply-templates.
When I write this: <ul><xsl:apply-templates select="authors/author" /></ul>
, what does it mean? Does it mean that it should apply a template where the author nodes are children of the authors node which is a child of the current node?
Following template rule:
<xsl:template match="author">
<li><xsl:value-of select="."/></li>
</xsl:template>