0
votes
XSLT multiple file inputs?
I don't think XSL is set up to work that way: it's designed to be used by something else on one or more documents, and the something else would be responsible for finding files to which the XSLT sh …
0
votes
XSLT: testing whether a certain type of non-null element exists… somewhere
What about something like this?
<xsl:for-each select="/answers/answer">
<xsl:if test="mean >= 0">
... other code ...
</xsl:if>
< …
0
votes
XML structure for a personal organizer
I think your structure will be fine for what you are doing.
If you're planning to use this partly to learn about XML, you might consider using a mix of attributes and elements so that you …
1
vote
Where do you get XML file formats from
Actually, XML is self-documenting, when used with a DTD or an …
