Content deleted Content added
m Bot: Fixing broken section link |
Disambiguated: stylesheet → Extensible Stylesheet Language |
||
Line 13:
== Examples ==
The most common use of a processing instruction is to request the XML document be rendered using a [[Extensible Stylesheet Language|stylesheet]] using the 'xml-stylesheet' target, which was standardized in 1999.<ref>http://www.w3.org/TR/xml-stylesheet/</ref> It can be used for both [[XSLT]] and [[Cascading Style Sheet|CSS]] stylesheets.
<source lang="xml"><?xml-stylesheet type="text/xsl" href="style.xsl"?></source>
<source lang="xml"><?xml-stylesheet type="text/css" href="style.css"?></source>
|