diff options
Updated formatter helper template
* recent changes in InputXSLT revamped "external-text-formatter" into a general "external-command" function
* this changes were implemented to enable e.g. symlinking and copying files from the source to the target
-rw-r--r-- | source/00_content/pages/contact.md | 2 | ||||
-rw-r--r-- | utility/formatter.xsl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/00_content/pages/contact.md b/source/00_content/pages/contact.md index a9811b9..84f7b2b 100644 --- a/source/00_content/pages/contact.md +++ b/source/00_content/pages/contact.md @@ -9,4 +9,4 @@ ### About me -Hi, my name is Adrian Kummerländer and I am a Software Developer located in southern Germany. +Hi, my name is Adrian Kummerländer. I am a Software Developer located in southern Germany. diff --git a/utility/formatter.xsl b/utility/formatter.xsl index 0f7643e..1c2ff3f 100644 --- a/utility/formatter.xsl +++ b/utility/formatter.xsl @@ -11,7 +11,7 @@ <xsl:param name="format"/> <xsl:param name="source"/> - <xsl:copy-of select="InputXSLT:external-text-formatter( + <xsl:copy-of select="InputXSLT:external-command( $format, $source )/self::output/node()"/> |