From http://www.w3schools.com (Copyright Refsnes Data)
Complete XSLT Element Reference
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"?> |
Complete XSLT Element Reference
From http://www.w3schools.com (Copyright Refsnes Data)