Re: result documents in an XSLT step?

On 01.11.2020 16:13, David Birnbaum wrote:
> <p:filter name="filtering" select="descendant::item[paradigm eq
> $current-paradigm]">


For p:filter I think you would need

   <p:filter name="filtering" select="descendant::item[paradigm =
'{$current-paradigm}']">

but it would still need a wrap-sequence to not return a sequence of
different documents where each has an "item" but instead return a single
document wrapping all selected item elements.

Received on Sunday, 1 November 2020 16:23:38 UTC