aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/build_xslt.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-01-17 20:44:31 +0100
committerAdrian Kummerlaender2017-01-17 20:44:31 +0100
commit42f512133535ddd3b542abecc5c96f8a0da6764b (patch)
treeb067a2b86116415d78c276401f103748390e8d5f /source/00_content/pages/projects/build_xslt.md
parent23f6297c212525d71692eb7ee8e6e096ad4711a3 (diff)
downloadblog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar.gz
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar.bz2
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar.lz
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar.xz
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.tar.zst
blog.kummerlaender.eu-42f512133535ddd3b542abecc5c96f8a0da6764b.zip
Update markdown syntax to use pandoc's peculiarities
Diffstat (limited to 'source/00_content/pages/projects/build_xslt.md')
-rw-r--r--source/00_content/pages/projects/build_xslt.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/00_content/pages/projects/build_xslt.md b/source/00_content/pages/projects/build_xslt.md
index 9c71677..83ce4e6 100644
--- a/source/00_content/pages/projects/build_xslt.md
+++ b/source/00_content/pages/projects/build_xslt.md
@@ -18,17 +18,16 @@ The source code of _BuildXSLT_ is available on both my [Github] profile and [cgi
While _BuildXSLT_ offers enough flexibility for all kinds of different XSLT based generation tasks it was specifically built to cater for the requirements of the [static site generator] this site is built with. As such its module definition file and the _XML Makefile_ used to call it makes for the best demonstration of what one can do with _BuildXSLT_:
-~~~
+```xsl
<transformation mode="chain">
<link>src/steps/list.xsl</link>
<link>src/steps/plan.xsl</link>
<link>src/steps/process.xsl</link>
<link>src/steps/summarize.xsl</link>
</transformation>
-~~~
-{: .language-xsl}
+```
-~~~
+```xsl
<task type="module">
<input mode="embedded">
<datasource>
@@ -40,8 +39,7 @@ While _BuildXSLT_ offers enough flexibility for all kinds of different XSLT base
</input>
<definition mode="file">[StaticXSLT.xml]</definition>
</task>
-~~~
-{: .language-xsl}
+```
[InputXSLT]: /page/input_xslt/
[static site generator]: /page/static_xslt/