- Made more consistent use of xsl:text.
1 parent 00efef2 commit 93ef22b470fe851f4185b4a6f74e5342c0355cc7
nstanger authored on 22 Feb 2012
Showing 1 changed file
View
6
modules/special-characters.xml
<!-- Non-breaking space. -->
 
<template name="non-breaking-space" match="non-breaking-space|nbsp|no-break-space">
<common formats="/latex/xelatex/">~</common>
<common formats="/latex/xelatex/"><xsl:text>~</xsl:text></common>
<common formats="/html/xhtml/"><xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text></common>
<!-- Could use U+00A0 NO-BREAK SPACE for XHTML? -->
</template>
<!-- Thin space. -->
 
<template name="thin-space" match="thin-space|thinspace">
<common formats="/latex/xelatex/">\,</common>
<common formats="/latex/xelatex/"><xsl:text>\,</xsl:text></common>
<common formats="/html/xhtml/"><xsl:text disable-output-escaping="yes">&amp;thinsp;</xsl:text></common>
<!-- Could use U+2009 THIN SPACE for XHTML? -->
</template>
<!--
Insert a discretionary hyphen. Only relevant for LaTeX output.
-->
<template name="discretionary-hyphen" match="hyphen">
<common formats="/latex/xelatex/">\-</common>
<common formats="/latex/xelatex/"><xsl:text>\-</xsl:text></common>
<!-- Could use U+00AD SOFT HYPHEN for XHTML? -->
</template>