From http://www.w3schools.com (Copyright Refsnes Data)
The <xsl:processing-instruction> element writes a processing instruction to the output.
<xsl:processing-instruction name="process-name"> <!-- Content:template --> </xsl:processing-instruction> |
Attribute | Value | Description |
---|---|---|
name | process-name | Required. Specifies the name of the processing instruction |
This code:
<xsl:processing-instruction name="xml-stylesheet"> href="style.css" type="text/css" </xsl:processing-instruction> |
Creates this tag:
<?xml-stylesheet href="style.css" type="text/css"?> |
From http://www.w3schools.com (Copyright Refsnes Data)