diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/transformer_facade.cc | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -27,6 +27,8 @@ The `test` directory contains black-box test cases for every external function p - [`InputXSLT:external-text-formatter`](test/external_text_formatter/transformation.xsl) (requires [markdown.pl](http://daringfireball.net/projects/markdown/)) - [`InputXSLT:write-file`](test/write_file/transformation.xsl) +Concepts of how static sites may be generated using InputXSLT are being evaluated in [TestXSLT](https://github.com/KnairdA/TestXSLT). + ## Requirements: - CMake diff --git a/src/transformer_facade.cc b/src/transformer_facade.cc index 431b9f8..1a55c4e 100644 --- a/src/transformer_facade.cc +++ b/src/transformer_facade.cc @@ -38,7 +38,7 @@ std::unique_ptr<xalan::FormatterToXML> augmentFormatterToXML( *(formatter.getWriter()), stylesheetRoot->getOutputVersion(outputVersion), stylesheetRoot->getOutputIndent(), - 0, + xalan::FormatterToXML::eDefaultIndentAmount, stylesheetRoot->getOutputEncoding(outputEncoding), stylesheetRoot->getOutputMediaType(outputMediaType), stylesheetRoot->getOutputDoctypePublic(outputDoctypePublic), |