blob: 93849426b670bc2b9733d2ca892d87bbc16c9732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?xml version="1.0" encoding="utf-8"?>
<!--
/=====================================================================\
| LaTeXML-tabular-xhtml.xsl |
| Converting tabular to xhtml |
|=====================================================================|
| Part of LaTeXML: |
| Public domain software, produced as part of work done by the |
| United States Government & not subject to copyright in the US. |
|=====================================================================|
| Bruce Miller <bruce.miller@nist.gov> #_# |
| http://dlmf.nist.gov/LaTeXML/ (o o) |
\=========================================================ooo==U==ooo=/
-->
<xsl:stylesheet
version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:ltx = "http://dlmf.nist.gov/LaTeXML"
xmlns = "http://www.w3.org/1999/xhtml"
xmlns:f = "http://dlmf.nist.gov/LaTeXML/functions"
extension-element-prefixes="f"
exclude-result-prefixes = "ltx f">
<!-- ======================================================================
Tabulars
====================================================================== -->
<xsl:template match="ltx:tabular" xml:space="preserve">
<table class="{f:classes(.)}">
<xsl:call-template name="add_id"/>
<xsl:apply-templates/>
</table>
</xsl:template>
<xsl:template match="ltx:thead" xml:space="preserve">
<thead class="{f:classes(.)}"><xsl:call-template name="add_id"/><xsl:apply-templates/></thead>
</xsl:template>
<xsl:template match="ltx:tbody" xml:space="preserve">
<tbody class="{f:classes(.)}"><xsl:call-template name="add_id"/><xsl:apply-templates/></tbody>
</xsl:template>
<xsl:template match="ltx:tfoot" xml:space="preserve">
<tfoot class="{f:classes(.)}"><xsl:call-template name="add_id"/><xsl:apply-templates/></tfoot>
</xsl:template>
<xsl:template match="ltx:tr" xml:space="preserve">
<tr class="{f:classes(.)}"><xsl:call-template name="add_id"/><xsl:apply-templates/></tr>
</xsl:template>
<xsl:template match="ltx:td">
<xsl:text>
</xsl:text>
<xsl:element name="{f:if(@thead,'th','td')}">
<xsl:call-template name="add_id"/>
<xsl:if test="@colspan">
<xsl:attribute name='colspan'><xsl:value-of select='@colspan'/></xsl:attribute>
</xsl:if>
<xsl:if test="@rowspan">
<xsl:attribute name='rowspan'><xsl:value-of select='@rowspan'/></xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="starts-with(@align,'char:')">
<xsl:attribute name='align'>char</xsl:attribute>
<xsl:attribute name='char'><xsl:value-of select="substring-after(@align,'char:')"/></xsl:attribute>
</xsl:when>
<xsl:when test="@align">
<xsl:attribute name='align'><xsl:value-of select='@align'/></xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:choose>
<xsl:when test="@border">
<xsl:attribute name='class'><xsl:value-of select="concat(f:classes(.),' ',@border)"/></xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name='class'><xsl:value-of select="f:classes(.)"/></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="@width">
<xsl:attribute name='width'><xsl:value-of select="@width"/></xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
|