1 minute read
Multi-pass (Multi-stage) Transforms
Multi-pass (Multi-stage) Transforms
If you need to apply several ‘passes’ of XSLT transforms to your data (with the output of each pass being used as the input for the next pass), you can do this easily by creating additional files named as “NameOfYourStyleSet(2).xslt”, “ NameOfYourStyleSet(3).xslt” and so on. The first will still be called “ NameOfYourStyleSet.xslt”, the second will have “(2)” added to the filename. The output of all stages will be saved as separate files during the export process, so you’ll be able to see what each stage is doing - it will not overwrite the output from the previous stage.
Advertisement