I'm thinking of starting answering questions in XSLT, but I don't know what the standard method of input would be?
I'm thinking of an XML file like so:
<?xml version="1.0" encoding="ISO-8859-1"?>
<input>Put your input here</input>
And then you access the input by using the following code:
<?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="/">
<xsl:value-of select="input" />
</xsl:template>
What do the rest of you think?