mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19153 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
12 lines
408 B
XML
12 lines
408 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
|
|
<xsl:output method="text" />
|
|
<xsl:preserve-space elements="*" />
|
|
<xsl:template match="/">
|
|
<xsl:for-each select="/nutrition/food">
|
|
<xsl:value-of select="name" />
|
|
</xsl:for-each>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|