The 'xslt' element represents the task of running XSLT on an XML input.
It has three attributes:
@in - the input document as a relative URI.
@out - the output document as a relative URI.
@style - the stylesheet to apply to the input to produce the output.
Example:
<project name="myxslt" default='build-xhtml'> <target name="build-xhtml"> <xslt in='index.xml' out='index.xhtml' style='mydoc2xhtml.xsl'/> </target> </project>