- Reformatted code.
1 parent aaf17c9 commit 6453fc22f2b4e111afc3176e2ec0821502990905
nstanger authored on 7 Oct 2011
Showing 1 changed file
View
12
modules/conditional-processing.xml
<!--
Conditional XML processing under for LaTeX output formats.
-->
<template name="process-when-latex" match="process-when[ contains( @format, 'latex' ) ]">
<common formats="/latex/xelatex/"><xsl:apply-templates /></common>
<common formats="/latex/xelatex/">
<xsl:apply-templates />
</common>
</template>
<!--
Conditional XML processing under for HTML output formats.
-->
<template name="process-when-html" match="process-when[ contains( @format, 'html' ) ]">
<common formats="/html/xhtml/"><xsl:apply-templates /></common>
<common formats="/html/xhtml/">
<xsl:apply-templates />
</common>
</template>
 
 
<!--