C2018-039: Upgrade – User Control of Format

This commit is contained in:
2018-12-12 15:29:56 +00:00
parent e2392f5fec
commit ddf01e9f9a
7 changed files with 1083 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="/">
<xsl:for-each select="//FormatData/*|//DocStyles/*">
<xsl:if test="*">
<xsl:value-of select="name()"/>
<xsl:if test="position() != last()">,</xsl:if>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>