I'm using XDocReport to create reports using a template like this:
«#foreach($developer in $developers)»«$developer.Name»
«#end»
My question is whether I can include an other document file in my template or not? Example:
«#foreach($developer in $developers)»«$developer.Name»
«#end»
«#include("./someOtherTemplate.odf")»
My goal is to recursively include other documents (fragments) which are edited by end users.
I've checked the Wiki pages but I did not find this option in XDocReport. Velocity supports inclusion. Did I miss something?
Note: I am free to use any document format (.odf, .docx, etc) supported by Word or LibreOffice.