I am working with XML data retrieved from a URL:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/style.xsl"?>
....etc...
To display the data in HTML format, I added the second line referencing the style.xsl file. However, after each update, this line disappears. How can I resolve this issue?
An example of the content in style.xsl:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
ect...