- Added discretionary hyphens for LaTeX.
1 parent 03df2cf commit e65d29b6ebd8fd00dde7389a217fae9ef3812222
nstanger authored on 26 Mar 2010
Showing 1 changed file
View
7
format-master.xml
<template name="thin-space" match="thin-space|thinspace">
<latex>\,</latex>
<html><xsl:text disable-output-escaping="yes">&amp;thinsp;</xsl:text></html>
</template>
<!--
Insert a discretionary hyphen. Only relevant for LaTeX output.
-->
<template name="discretionary-hyphen" match="hyphen">
<latex>\-</latex>
</template>
<!--
Technically we don't need to disable output escaping for all of
these, but it's probably better to code them all consistently,