我的 XSLT 如下所示。aic 是一个命名空间。什么是cstyle?它是内置的 XSLT 元素/函数吗?还是预期输入xml中的元素?
<xsl:stylesheet exclude-result-prefixes="aic"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aic="http://ns.adobe.com/AdobeInCopy/2.0/" >
<xsl:template match="/">
</xsl:template>
<xsl:template match="aic:cstyle[contains(@name,'bold')]">
</xsl:template>
</xsl:stylesheet>