<?xml version="1.0" encoding="UTF-8"?>
<p:pipeline xml:lang="en" name="pipeline" xmlns:p="http://www.w3.org/2007/03/xproc">
<p:input port="source">
  <p:document href="input.xml"/>
</p:input>
<p:output port="result"/>

<p:load name="loadStyle">
  <p:option name="href" value="style.xsl"/>
</p:load>

<p:xslt>
  <p:input port="source">
    <p:pipe step="pipeline" port="source"/>
  </p:input>
  <p:input port="stylesheet">
    <p:pipe step="loadStyle" port="result"/>
  </p:input>
</p:xslt>

</p:pipeline>

