<?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:output port="result"/>

<p:identity name="identity"/>

<p:identity name="joiner">
  <p:input port="source">
    <p:document href="example.xml"/>
    <p:inline>
      <div xmlns="http://www.w3.org/1999/xhtml">
	<p>This is a test.</p>
      </div>
    </p:inline>
    <p:pipe step="identity" port="result"/>
    <p:pipe step="pipeline" port="source"/>
  </p:input>
</p:identity>

<p:count name="counter"/>

</p:pipeline>

