Files
spring-boot-rest/xml-2/src/main/resources/xml/prettyprint.xsl
Kai Yuan caf9476bbb pretty-print xml in java (#11899)
* pretty-print xml in java

* simplified pom.xml
2022-03-12 13:09:18 -06:00

11 lines
333 B
XML

<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>