I am using XSLT3 as provided in Saxon to convert a single input XML file to a set of output files. All these output files are conceptually equivalent. Each output file is declared via the result-document
directive, as explained on https://www.w3.org/TR/2007/REC-xslt20-20070123/#element-result-document.
In this case, I don't need any main output, but Saxon is still creating such output file. Is it somehow possible to disable the main output in XSLT3 or Saxon?
I could use result-document
for all desired output files, except the last one, and just use the main output for that one - but that feels odd.