About 1,940,000 results
Open links in new tab
  1. Which browser can show XML data transformed by XSLT?

    Many browsers support the XML-stylesheet processing instruction. If it is included in an XML file and you open this XML with your browser, the browser will load the specified XSLT, run it with the XML file as input and display the XSLT's output instead of the original XML document.

  2. xslt - how to embed xsl into xml file - Stack Overflow

    Sep 12, 2015 · An XSLT document is also a well-formed XML document. XSLT is used to transform XML documents, and so you can in theory apply XSLT to itself.

  3. xml - What's the difference between XSLT and XSL-FO? - Stack …

    Apr 11, 2009 · XSLT is designed for use as part of XSL, which is a stylesheet language for XML. In addition to XSLT, XSL includes an XML vocabulary for specifying formatting. XSL specifies the styling of an XML document by using XSLT to describe how the document is transformed into another XML document that uses the formatting vocabulary.

  4. How to transform an XML file using XSLT in Python?

    If the xml file is large, the efficiency of "newdom = transform(dom)" is very bad. I tried to parse a large xml file (>100MB), it will cost a long time (>4 hours) to transform. Do you have any good advice about transforming xml file with xslt using python lxml?

  5. xml - How to implement if-else statement in XSLT? - Stack Overflow

    Nov 29, 2012 · Learn how to implement if-else statements in XSLT with examples and explanations.

  6. Transforming xml files in PowerShell, with parameter

    Mar 21, 2023 · I am doing an XML transform with XSLT in PowerShell. There are two XML files involved, one containing the structure and the other containing texts in different languages. The file containing a stru...

  7. xml - XSLT not working in web browser - Stack Overflow

    Apr 29, 2015 · i do not have experience with xslt (this xsl file is not my work => outer source) and therefore i do not know if it is 1.0 or 2.0 (sadly i do not know differences, will google it), like you said i used xml-stylesheet... about different domains, well i though that was my problem when Mathias suggested it, but it seems it is not...

  8. xml - Tools for debugging xslt - Stack Overflow

    A) Using commandline xmllint mytransform.xsl as a basic syntax checker is helpful to catch mismatched braces etc. B) Also running a commandline processor in verbose mode can be really helpful esp. when you don't know why xslt is choking on your code. xsltproc -v mytransform.xsl input.xml &>log.txt dumps a LOT of info from the xsltprocessor ...

  9. xml - what's the relationship between XSL and XSLT - Stack Overflow

    Jan 9, 2014 · XSL is a language for expressing stylesheets. It consists of three parts: 1. XSL Transformations (XSLT): a language for transforming XML documents 2. The XML Path Language (XPath): an expression language used by XSLT to access or refer to parts of an XML document. 3.An XML vocabulary for specifying formatting semantics (XSL Formatting Objects)

  10. How to output HTML file from XML and XSLT stylesheet

    Oct 18, 2010 · application/xslt+xml was the proposal in XSLT 2.0 WD. So, test/xml or application/xml (for purist) are the correct MIME type for sending XSLT stylesheets. The type pseudo attribute of xml-stylesheet PI is just to determine between test/css and test/xsl. –

Refresh