I have XSLT that creates HTML from XML. There are several parts of the resulting HTML that I need to create by external C# method (extension method).
- How do I embed this C# method into XSLT (within what xsl nodes? I do know how to use common extension functions inside XSLT)
- What should my C# function return? HTML-formatted string? With escaped HTML tags or without?
Thank you very much!