Listing A
<map:pipeline>
   <map:match pattern="hello.html">
    <map:generate src="content/xml/hello-page.xml"/>
    <map:transform src="style/xsl/simple-page2html.xsl"/>
    <map:serialize type="html"/>
   </map:match>
 
   <map:match pattern="hello.xhtml">
    <map:generate src="content/xml/hello-page.xml"/>
    <map:transform src="style/xsl/simple-page2html.xsl"/>
    <map:serialize type="xhtml"/>
   </map:match>
  
   <map:match pattern="hello.wml">
    <map:generate src="content/xml/hello-page.xml"/>
    <map:transform src="style/xsl/simple-page2wml.xsl"/>
    <map:serialize type="wml"/>
   </map:match>
</map:pipeline>