diff options
Switched content formatter to kramdown
* implemented language selection for automatic syntax highlighting
** language selection requires the language to be used to be passed as a class of the code element
** kramdown enables easy definition of this class attribute
* kramdown offers more functionality such as table and class attribute support
* updated all articles accordingly
Diffstat (limited to 'utility')
-rw-r--r-- | utility/master.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/master.xsl b/utility/master.xsl index 66cfdb3..723aa0c 100644 --- a/utility/master.xsl +++ b/utility/master.xsl @@ -18,7 +18,7 @@ <xsl:template name="list_tags"> <ul> - <xsl:for-each select="datasource/meta/tags/entry"> + <xsl:for-each select="$root/meta/tags/entry"> <li> <a href="{$url}/tag/{@handle}"> <xsl:value-of select="@handle"/> |