I saw this used in this question:
<xsl:template match="node()|@*"> <xsl:copy> <xsl:apply-templates select="node()|@*"/> </xsl:copy>
Can someone explain what "node () | @ *" means?
This is called identity transformation . node()|@* matches all child nodes ( node() is all text, element, processing instructions, comments) and attributes ( @* ) of the current context.
node()|@*
node()
@*
Source: https://habr.com/ru/post/910255/More articles:Javascript DOM, get text node without losing distance information - javascriptWhere is the Developer folder located? - vmwareCalculate downtime between two nodes using NetworkX - pythonNo "tryParseDouble" in Java? - javaMapReduce, Python, and NetworkX - pythonIs there an Aztec barcode generator library for JavaScript? - javascriptClosing JavaScript and cloning names - javascriptMatplotlib: open a closed shape? - matplotlibVim and padding with parentheses / brackets - vimMatplotlib: how to show a shape that has been closed - pythonAll Articles