fix Fatturazione elettronica XML previe

This commit is contained in:
2026-01-05 10:04:13 +01:00
parent 67c4783b8c
commit 6a19f7cde6
992 changed files with 17335 additions and 4344 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*">
<table>
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="*">
<tr>
<td>
<xsl:value-of select="name()"/>
</td>
<td>
<xsl:apply-templates/>
</td>
</tr>
</xsl:template>
</xsl:stylesheet>