↧
Answer by SomeStupid for Add a DOCTYPE declaration on XSL Ouptut
You can easily add a doctype declaration with the xsl:output element:<xsl:output method="xml" standalone="no" doctype-public="-//Org//DTD XYZ 2017-02-06//DE" doctype-system="myStructure.dtd"...
View ArticleAdd a DOCTYPE declaration on XSL Ouptut
I am transforming xml to another xml using XSLT. Some xmls will have DOCTYPE declaration and some donot. I am trying to insert doctype declaration from XSLT stylesheet but I couldn't find enough...
View Article