I use about a dozen XSLT files to provide a large number of output formats. At the moment, the user must know the extension of the file format exported, for example. RTF, HTML, TXT.
I would also like to use parameters to allow more parameters. If I can embed metadata in the XSL file itself, I can get the details by looking at the files.
Thatβs what Iβm thinking about. In this example, the program will have to analyze the comments for the necessary information.
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:param name="CompanyName"/> <xsl:param name="DateDue"/> <xsl:param name="IncludePicture">true</xsl:param> <xsl:template match="/"> </xsl:template> </xsl:stylesheet>
Are there any standards? Do I need to hammer in more than one (Dublin core with a small amount of XML schema)?
PS the project to which it is applied is equal to Argumentative .
xslt
John hartley
source share