17. parameterGroup

<parameterGroup
  name = non empty token
>
  Content: [ parameter | parameterGroup ]*
</parameterGroup>

<parameter
  name = Non empty token
>
  Content: Parameter value
</parameter>

Define a named group of XSLT style sheet parameters for use inside element transform of a process command.

Parameter groups make it easier to customize the XSLT style sheet used to convert a document to other formats such as HTML or PDF.

For example, instead of redefining the whole process command docb.toPS, suffice to redefine in %APPDATA%\XMLmind\XMLeditor\addon\customize.xxe ($HOME/.xxe/addon/customize.xxe on Unix) its placeholder parameterGroup named "docb.toPS.transformParameters".

Examples:

  <parameterGroup name="docb.toPS.transformParameters">
    <parameter name="variablelist.as.blocks">1</parameter>
  </parameterGroup>

  <parameterGroup name="docb.toRTF.transformParameters">
    <parameterGroup name="docb.toPS.transformParameters"/>
  </parameterGroup>