Search code examples
xmlxsltwikitranslationwikitext

How to convert XML to something else using xslt stylesheet?


How to convert XML to something else using xslt stylesheet?

In C++ C# PHP or ActionScript?

For example I have this html2wiki xslt stylesheet I want to send to my programm my XML (in this case HTML file ) and get back a file (in this case Wiki mark up text )

So How to translate one text file into another text file using XSLT stylesheet in any language?


Solution

  • Pseudocode:

    Load SOURCE file as XML
    Load STYLESHEET file as XML
    Apply STYLESHEET to SOURCE, generating RESULT
    Write RESULT out to file as XML