aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-08-09 18:42:47 +0200
committerAdrian Kummerlaender2014-08-09 18:42:47 +0200
commit7f6611cded8c1591f1aa1a4c7d70505cb21e7967 (patch)
tree6be359d9f6b718c8ceea991f62fd12ef5c4c43c9 /test
parent97b17caeeb8512e2af332d7095fca4cad160a980 (diff)
downloadInputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar.gz
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar.bz2
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar.lz
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar.xz
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.tar.zst
InputXSLT-7f6611cded8c1591f1aa1a4c7d70505cb21e7967.zip
Changed FunctionExternalTextFormatter to execute formatter inside shell
* otherwise one has to pass the full path to the command ** additionally it is much easier to enable passing arguments to the external formatter this way * modified external function parameter accordingly * updated external text formatter test case
Diffstat (limited to 'test')
-rw-r--r--test/external_text_formatter/transformation.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/external_text_formatter/transformation.xsl b/test/external_text_formatter/transformation.xsl
index f797b87..aa9a300 100644
--- a/test/external_text_formatter/transformation.xsl
+++ b/test/external_text_formatter/transformation.xsl
@@ -25,7 +25,7 @@
<xsl:template name="implementation">
<xsl:variable name="result">
<xsl:call-template name="formatter">
- <xsl:with-param name="format">/usr/bin/markdown</xsl:with-param>
+ <xsl:with-param name="format">markdown</xsl:with-param>
<xsl:with-param name="file">[test.md]</xsl:with-param>
</xsl:call-template>
</xsl:variable>