<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"/>
<xsl:template match="/"><xsl:apply-templates /></xsl:template>
<xsl:template match="//key"><div data-role="collapsible"><h3><xsl:apply-templates /></h3></xsl:template>
<xsl:template match="//string|//integer|//false"><p><xsl:apply-templates /></p></div></xsl:template>
<xsl:template match="//array"><div><xsl:apply-templates /></div></div></xsl:template>
<xsl:template match="//dict" ><div data-role="collapsible-set"><xsl:apply-templates /></div></xsl:template>
<xsl:template match="//array/string|//array/integer" ><p ><xsl:apply-templates /></p></xsl:template>
</xsl:stylesheet>
|