pretty-print xml in java (#11899)
* pretty-print xml in java * simplified pom.xml
This commit is contained in:
11
xml-2/src/main/resources/xml/prettyprint.xsl
Normal file
11
xml-2/src/main/resources/xml/prettyprint.xsl
Normal file
@@ -0,0 +1,11 @@
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:strip-space elements="*"/>
|
||||
<xsl:output method="xml" encoding="UTF-8"/>
|
||||
|
||||
<xsl:template match="@*|node()">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*|node()"/>
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
Reference in New Issue
Block a user