What Is a Stylesheet?

A stylesheet is an XML document that contains instructions for generating a new document based on information in the source document. This can involve adding, removing, or rearranging nodes, as well as presenting the nodes in a new way.

This following topics provide more information:

Example of a Stylesheet

When you work with a stylesheet, three documents are involved:

l XML source document
l Result document, which can be HTML, XML, or text
l XSL stylesheet, which is also an XML document

For example, suppose you have the following XML document:

You can use a stylesheet to transform this XML document into an HTML document that appears as follows in a Web browser:

The Web page in Figure 227 is defined by the following HTML document:

The HTML document contains HTML markup that is not in the source document. In the HTML document, the data from the source document is not in the same order as it is in the XML source document. Also, this HTML document does not include some data that is in the XML source document. Specifically, the HTML document does not include information about the date of publication (the published elements).

To create this HTML file, the stylesheet contains two templates that provide instructions for

l Adding a table with a heading row
l Wrapping the contents of the title, author, and price elements in table cells

Following is a stylesheet that does this.

About Stylesheet Contents

Stylesheets are XML documents. They contain a combination of

l XSLT elements and attributes. In the previous stylesheet, the XSLT elements are
l Non-XSLT elements and attributes. In the previous stylesheet, these include the HTML elements that create the table.

The root element of a stylesheet must declare a namespace that associates a prefix with the URI for an XSLT processor. The URI in the namespace declaration in the previous example identifies the W3C standard XSLT processor. This declaration, shown again below, instructs the XSLT processor to recognize the XSLT elements and attributes by their xsl prefix:

In this stylesheet, you must use the xsl prefix for all XSLT instructions.

 
Free Stylus Studio XML Training: