summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhttp://kerravonsen.dreamwidth.org/ <http://kerravonsen.dreamwidth.org/@web>2009-12-01 18:51:10 -0500
committerJoey Hess <joey@kitenet.net>2009-12-01 18:51:10 -0500
commitcbdd0d85078eb8bc9d01698e9cc8ac24e12ca7ea (patch)
treec5059999607260f9baa783a2c05c640ef5fc1cb4
parent64765b365e46e0bd557d994829a0592497a5702c (diff)
bug fix; now checks extensions.
-rw-r--r--doc/plugins/contrib/xslt.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugins/contrib/xslt.mdwn b/doc/plugins/contrib/xslt.mdwn
index e26f58e38..f98f8378d 100644
--- a/doc/plugins/contrib/xslt.mdwn
+++ b/doc/plugins/contrib/xslt.mdwn
@@ -20,10 +20,10 @@ It is expected that the XSLT stylesheet will output valid HTML markup.
There are two arguments to this directive.
* **file:**
- The file which contains XML data to be processed. This file is searched for using the usual IkiWiki mechanism, thus finding the file first in the same directory as the page, then in the directory above, and so on.
+ The file which contains XML data to be processed. This file *must* have a `.xml` extension (`filename.xml`). This file is searched for using the usual IkiWiki mechanism, thus finding the file first in the same directory as the page, then in the directory above, and so on.
* **stylesheet:**
- The file which contains XSLT stylesheet to apply to the XML data. This file is searched for using the usual IkiWiki mechanism, thus finding the file first in the same directory as the page, then in the directory above, and so on.
+ The file which contains XSLT stylesheet to apply to the XML data. This file *must* have a `.xsl` extension (`filename.xsl`). This file is searched for using the usual IkiWiki mechanism, thus finding the file first in the same directory as the page, then in the directory above, and so on.
## PREREQUISITES