satellite03
IS-IT--Management
XML
===
<?xml version="1.0"?>
<message priority="low">Hey, XSLT isn't so hard after all!</message>
XSLT
====
<stylesheet version="1.0" xmlns="<output method="text"/>
<template match="message">
<apply-templates/>
</template>
</stylesheet>
output
=======
Hey, XSLT isn't so hard after all!
how "<apply-templates/>" works ? i am very very much confused about its functioning.
It seems to me the role of <apply-templates/> changes time to time depending upon its position inside XSLT. is it correct ?
does it follow any rule ?
please explain how "<apply-templates/>" works ?
===
<?xml version="1.0"?>
<message priority="low">Hey, XSLT isn't so hard after all!</message>
XSLT
====
<stylesheet version="1.0" xmlns="<output method="text"/>
<template match="message">
<apply-templates/>
</template>
</stylesheet>
output
=======
Hey, XSLT isn't so hard after all!
how "<apply-templates/>" works ? i am very very much confused about its functioning.
It seems to me the role of <apply-templates/> changes time to time depending upon its position inside XSLT. is it correct ?
does it follow any rule ?
please explain how "<apply-templates/>" works ?