Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform">[/URL]
<xsl:output method = "text" />
<xsl:template match="/">
<!-- for each child of rootnode -->
<xsl:for-each select="/*/*">
<!-- for each child that doesn't contain anyting else -->
<xsl:for-each select="*[not(*)]">
<xsl:value-of select="."/>
<!-- add comma if not last node -->
<xsl:if test="position() != last()">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:for-each>
<!-- new line -->
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform">[/URL]
<xsl:output method="text"/>
<xsl:template match="@*|node()">
<xsl:if test="string(name(.)) != '' and string(text()) != ''">
<xsl:value-of select="name(.)"/>
<xsl:text>,</xsl:text>
<xsl:value-of select="text()"/>
<xsl:text>,</xsl:text>
</xsl:if>
<xsl:apply-templates select="@*|node()"/>
</xsl:template>
</xsl:stylesheet>