aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-12 13:05:58 +0200
committerAdrian Kummerlaender2014-10-12 13:05:58 +0200
commit7b25673658e7da8d1686a8395a58f1ad3da10d9e (patch)
tree858830179d0c9da1f651697792c55229cc948e6d /README.md
parentbd072c48f380aaf25756c72e2d2ed2474ae9e96d (diff)
downloadStaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar.gz
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar.bz2
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar.lz
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar.xz
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.tar.zst
StaticXSLT-7b25673658e7da8d1686a8395a58f1ad3da10d9e.zip
Linked blog implementation as a example and fixed usage `ixslt` call
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 38b2e25..a7e806a 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
…is a [BuildXSLT](https://github.com/KnairdA/BuildXSLT) module implementing a static site generator in XSLT using [InputXSLT](https://github.com/KnairdA/InputXSLT).
+The prime example of how this framework may be used to generate a static website is the implementation of my [personal blog](https://github.com/KnairdA/blog.kummerlaender.eu/).
+
## Overview:
The `src/steps` directory contains a chain of transformations which are processed by the build system as specified in `StaticXSLT.xml`.
@@ -33,7 +35,7 @@ The `StaticXSLT.xml` file defines a [BuildXSLT](https://github.com/KnairdA/Build
In this example the input tree defines both the `source` and `target` directories relative to the working directory of the `ixslt` executable which is required to make use of the external functions provided by [InputXSLT](https://github.com/KnairdA/InputXSLT). The square brackets around the `StaticXSLT.xml` filename are instructing the custom include entity resolver to resolve the given path against the include path array provided to `ixslt`. This means that _StaticXSLT_ based websites may be generated as follows:
```
-xslt --input make.xml --transformation ../BuildXSLT/build.xsl --include ../StaticXSLT
+ixslt --input make.xml --transformation ../BuildXSLT/build.xsl --include ../StaticXSLT
```
## Levels: