XSLT assignment to XML
in source xml code we have to add xml-stylesheet property with xsl stylesheet file. It's xslt file with xsl extension.
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="C:\Users\lukas.sevcik\Desktop\xml\styleSheet.xsl"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
...