Skip to content

Commit

Permalink
Fix signature of p:xslt
Browse files Browse the repository at this point in the history
  • Loading branch information
xml-project committed Apr 13, 2019
1 parent 92939c7 commit 9bda31d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions steps/src/main/xml/steps/xslt.xml
Expand Up @@ -7,11 +7,11 @@
<para>The <tag>p:xslt</tag> step applies an XSLT stylesheet to a document.</para>

<p:declare-step type="p:xslt">
<p:input port="source" content-types="application/xml text/xml */*+xml" sequence="true" primary="true"/>
<p:input port="source" content-types="*/*" sequence="true" primary="true"/>
<p:input port="stylesheet" content-types="application/xml text/xml */*+xml"/>
<p:output port="result" primary="true" sequence="true" content-types="*/*"/>
<p:output port="secondary" sequence="true"/>
<p:option name="parameters" as="map(xs:QName,item())?"/>
<p:output port="result" primary="true" sequence="false" content-types="*/*"/>
<p:output port="secondary" sequence="true" content-types="*/*"/>
<p:option name="parameters" as="map(xs:QName,item()*)?"/>
<p:option name="initial-mode" as="xs:QName?"/>
<p:option name="template-name" as="xs:QName?"/>
<p:option name="output-base-uri" as="xs:anyURI?"/>
Expand Down

0 comments on commit 9bda31d

Please sign in to comment.