- Improved handling of empty todo elements.
1 parent e6d01b6 commit afd003b0f46ee7c34a4cd462eab16665f0ea5683
nstanger authored on 19 Jun 2012
Showing 1 changed file
View
32
modules/meta-elements.xml
Identify and highlight to-do items that are not yet completed.
-->
<template name="todo" match="todo|to-do|incomplete|check">
<common formats="/latex/xelatex/">
<xsl:text>\textbf{[!!TODO!! </xsl:text>
<xsl:apply-templates />
<xsl:text> !!]}</xsl:text>
<xsl:text>\textbf{[!!TODO!!</xsl:text>
<xsl:if test="node()">
<xsl:text> </xsl:text>
<xsl:apply-templates />
<xsl:text> !!</xsl:text>
</xsl:if>
<xsl:text>]}</xsl:text>
</common>
<common formats="/html/xhtml/">
<strong>[!!TODO <xsl:apply-templates /> !!]</strong>
<strong>
<xsl:text>[!!TODO</xsl:text>
<xsl:if test="node()">
<xsl:text> </xsl:text>
<xsl:apply-templates />
<xsl:text> !!</xsl:text>
</xsl:if>
<xsl:text>]</xsl:text>
</strong>
</common>
</template>