Processing Instruction: Difference between revisions

Content deleted Content added
Dexbot (talk | contribs)
m Bot: Fixing broken section link
Doncram (talk | contribs)
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>