What is XSLT stylesheet? - XML

What is XSLT stylesheet?

XSL stylesheet is just like a XML document used as a program text or a source. It contains sets of rules and instructions used for transformations. XSLT stylesheet along with the XML source documents are the inputs to the XSLT processor. The template rule contains two parts: a pattern used to match the nodes in the source document and a template which can be instantiated to form part of the result tree. A stylesheet is represented by an xsl:stylesheet element in an XML document.
Discuss the role of XPATH - XML
XPATH is used to scan the XML document for navigation of elements and attributes.....
Explain the XSLT data model - XML
XSLT shares the same data model of XPATH with some additions. XSLT accepts a XSLT stylesheet as an input and output is another XML, text or another document.......
Why the need for XHTML? - XML
If a script in an HTML document is not well formed, small devices like mobile phones fail to display the content properly......
Post your comment