36 lines
661 B
XML
36 lines
661 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
|
|
<xsl:strip-space elements="*"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
<body>
|
|
<facilitor>
|
|
<melding>
|
|
<mld_melding_key>
|
|
<xsl:value-of select="facilitor/opdracht/melding/key"/>
|
|
</mld_melding_key>
|
|
<opdracht>
|
|
<mld_opdr_key>
|
|
<xsl:value-of select="facilitor/opdracht/key"/>
|
|
</mld_opdr_key>
|
|
</opdracht>
|
|
</melding>
|
|
<zendesk>
|
|
</zendesk>
|
|
</facilitor>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|