我试图理解这个 xslt。
下面的 xslt 命令究竟选择了什么?什么是“following-sibling”、“aic”和“pstyle”?
“aic”似乎是一个名称空间。
下面的 xslt 使用什么 xml 输入?
<xsl:stylesheet exclude-result-prefixes="aic"
version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aic="http://ns.adobe.com/AdobeInCopy/2.0/" >
<xsl:template match="/">
<xsl:value-of select="following-sibling::aic:pstyle"/>
</xsl:template>
</xsl:stylesheet>