- Revamped TODO formatting so that it works better in LaTeX. \fbox{} doesn't
linewrap.
1 parent 820a283 commit 59e15a0bc55754d9357c62608db0ac69061b801f
nstanger authored on 12 Jun 2012
Showing 1 changed file
View
6
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>\fbox{\textbf{!!</xsl:text>
<xsl:text>\textbf{[!!TODO!! </xsl:text>
<xsl:apply-templates />
<xsl:text>!!}}</xsl:text>
<xsl:text> !!]}</xsl:text>
</common>
<common formats="/html/xhtml/">
<strong style="border: 1px solid black;">!!<xsl:apply-templates />!!</strong>
<strong>[!!TODO <xsl:apply-templates /> !!]</strong>
</common>
</template>