Hello,
Below is the code to transform XML file to HTML. When tried with BaseX working fine.
let $in := /Resumes/Resume[WorkExpr/Java > "5"]
let $style := doc('resume.xslt')
return (xslt:transform($in, $style))
*The aobve XSLT file will tramsform the output to HTML.*
*Now I want to display this HTML output in JEditorPane.*
* * **