From ce5c887d3f8d7f72396bae5b20166d6af1c76445 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 12 Oct 2014 13:14:35 +0200 Subject: Updated README.md to mention module support --- README.md | 23 +++++++++++++++-------- build.xsl | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index afcc8f6..5f4790a 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,14 @@ - generating single transformations - generating chained transformations - using files or embedded XML-trees as transformation input +- using external modules such as [StaticXSLT](https://github.com/KnairdA/StaticXSLT) ## Example: -BuildXSLT can for example be used to build a [static website](https://github.com/KnairdA/blog.kummerlaender.eu) using the following generation chain called via `ixslt --input make.xml --transformation build.xsl`: +BuildXSLT can for example be used to build a [static website](https://github.com/KnairdA/blog.kummerlaender.eu) using the following XML _Makefile_ called via `ixslt --input make.xml --transformation build.xsl --include ../StaticXSLT`: ``` - + @@ -23,11 +24,17 @@ BuildXSLT can for example be used to build a [static website](https://github.com - - detail/list.xsl - detail/plan.xsl - detail/process.xsl - detail/summarize.xsl - + [StaticXSLT.xml] ``` + +Where the module definition of `StaticXSLT.xml` looks as follows: + +``` + + src/steps/list.xsl + src/steps/plan.xsl + src/steps/process.xsl + src/steps/summarize.xsl + +``` diff --git a/build.xsl b/build.xsl index 585cb12..501c129 100644 --- a/build.xsl +++ b/build.xsl @@ -134,7 +134,7 @@ - + -- cgit v1.2.3