summaryrefslogtreecommitdiff
path: root/swext/mediawiki/src/filter/odt2mediawiki.xsl
blob: d8a9fba40d9097636eff0d12b950352ccbec21a8 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
<?xml version="1.0" encoding="UTF-8"?>
<!--
    odt2mediawiki: OpenDocument to WikiMedia transformation
    Copyright (C) 2007-2013  Bernhard Haumacher (haui at haumacher dot de)

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

    $Id: odt2mediawiki.xsl 3180 2013-03-17 16:00:43Z hauma $
-->
<stylesheet version="1.0" 
	xmlns="http://www.w3.org/1999/XSL/Transform"

	xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
	xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" 
	xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" 
	xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
	xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
	xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
	xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
	xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
	xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
	xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
	xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
	xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" 
	xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
	xmlns:xlink="http://www.w3.org/1999/xlink" 
	xmlns:dc="http://purl.org/dc/elements/1.1/" 
	xmlns:math="http://www.w3.org/1998/Math/MathML" 
	xmlns:dom="http://www.w3.org/2001/xml-events" 
	xmlns:xforms="http://www.w3.org/2002/xforms" 
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
>
	
	<!-- 
		== Customization options ==
	-->

	<!-- Constant defining the newline token. -->
	<param name="NL" select="'&#10;'"/>

	<!-- String that a tabulator is expanded with in preformatted paragraphs. -->

		<variable name="codetabdocument-value"
			select="/office:document/office:meta/meta:user-defined[@meta:name='CODE_TAB_REPLACEMENT']"/>

	<param name="CODE_TAB_REPLACEMENT">

		<choose>

			<when test="boolean($codetabdocument-value)">
				<value-of select="$codetabdocument-value"/>
			</when>
			
			<otherwise>
				<value-of select="'    '"/>
			</otherwise>
		</choose>
	</param>
	
	<!-- 
		Switch that suppresses separation of paragraphs with empty lines. 
		(Set to 1 to activate) -->
	<param name="CODE_JOIN_PARAGRAPHS" 
		select="boolean(string(/office:document/office:meta/meta:user-defined[@meta:name='CODE_JOIN_PARAGRAPHS']) != 'false')"/>
	
		<variable name="document-value"
			select="/office:document/office:meta/meta:user-defined[@meta:name='CODE_STYLES']"/>

	<param name="CODE_STYLES">

		<choose>
			<when test="boolean($document-value)">
				<value-of select="$document-value"/>
			</when>
			
			<otherwise>
				<value-of select="''"/>
			</otherwise>
		</choose>
	</param>

		<variable name="table-class"
			select="/office:document/office:meta/meta:user-defined[@meta:name='TABLE_CLASS']"/>

	<param name="TABLE_CLASS">
		<choose>
			<when test="boolean($table-class)">
				<value-of select="$table-class"/>
			</when>
			
			<otherwise>
				<value-of select="''"/>
			</otherwise>
		</choose>
	</param>
	
	<variable name="USE_DEFAULT_TABLE_CLASS" select="string-length($TABLE_CLASS) &gt; 0"/>


	<!-- 
		== Wiki style constants == 
	-->
	
	<!-- Bold character style. -->
	<variable name="BOLD_BIT" select="1"/>

	<!-- Italic character style. -->
	<variable name="ITALIC_BIT" select="2"/>

	<!-- Underline character style. -->
	<variable name="UNDERLINE_BIT" select="4"/>

	<!-- Subscript character style. -->
	<variable name="SUBSCRIPT_BIT" select="8"/>

	<!-- Superscript character style. -->
	<variable name="SUPERSCRIPT_BIT" select="16"/>

	<!-- Typewriter character style. -->
	<variable name="TYPEWRITER_BIT" select="32"/>
	
	<!-- Preformatted text paragraph style. -->
	<variable name="CODE_BIT" select="64"/>

	<!-- Centered paragraph style. -->
	<variable name="CENTER_BIT" select="128"/>

	<!-- Right aligned paragraph style. -->
	<variable name="RIGHT_BIT" select="256"/>
	
	<!-- Constant defining the empty style. -->
	<variable name="NO_STYLE" select="0"/>



	<output 
		method="text" 
		media-type="text/plain" 
		encoding="UTF-8"
	/>


	<!-- 
		== Reference resolution == 
	-->

	<key
		name="style-ref"
		match="//style:style"
		use="@style:name"
	/>

	<key
		name="list-style-ref"
		match="//text:list-style"
		use="@style:name"
	/>
	
	<key
		name="font-face-ref"
		match="//style:font-face"
		use="@style:name"
	/>
	
	<key
		name="reference-resolution"
		match="//text:reference-mark | //text:reference-mark-start"
		use="@text:name"
	/>


	<!-- 
		Multiple pages (draw only)
	-->

	<template match="draw:page">
		<value-of select="concat('&#10;&lt;!-- Page ', @draw:name, '--&gt;&#10;')"/>
		<apply-templates/>
		<value-of select="'&#10;----&#10;&#10;'"/>
	</template>


	<!-- 
		== Lists == 
	-->

	<template match="text:list">
		<!-- 
			Check, whether this list is used to implement the outline numbering 
			for headings. Such list must not be exported, because within the wiki, 
			automatic outline numbering is performed. An outline list has a single 
			text:h element as its single leaf grandchild. 
			
			This method of section numbering seems not to be used when creating new
			documents with OpenOffice.org 2.2, but the document containing the 
			OpenDocument specification version 1.1 uses such numbering through nested 
			lists.
			-->
		<choose>
			<when test="boolean(./descendant::node()[not(./self::text:list) and not(./self::text:list-item) and not(./ancestor-or-self::text:h)])">
				<apply-templates/>
			</when>
			
			<otherwise>
				<apply-templates select=".//text:h"/>
			</otherwise>
		</choose>
	</template>
	
	<template match="text:list-item">
		<if test="position() &gt; 1 or boolean(ancestor::text:list-item)">
			<value-of select="$NL"/>
		</if>
		<variable name="list-style" 
			select="key('list-style-ref',ancestor::text:list[boolean(@text:style-name)][1]/@text:style-name)"/>
		<call-template name="mk-list-token">
			<with-param name="list-style" select="$list-style"/>
			<with-param name="level" select="count(ancestor::text:list)"/>
		</call-template>
		<text> </text>
		<apply-templates/>
		<if test="position() = last() and not(boolean(ancestor::text:list-item))">
			<!-- End of (potentially nested) list is marked with a double newline. -->
			<value-of select="$NL"/>
			<value-of select="$NL"/>
		</if>
	</template>
	
	<template name="mk-list-token">
		<param name="list-style"/>
		<param name="level"/>
		
		<if test="$level &gt; 1">
			<call-template name="mk-list-token">
				<with-param name="list-style" select="$list-style"/>
				<with-param name="level" select="$level - 1"/>
			</call-template>
		</if>

		<variable name="number-style" select="$list-style/text:list-level-style-number[@text:level=$level]"/>
		<variable name="bullet-style" select="$list-style/text:list-level-style-bullet[@text:level=$level]"/>
		<choose>
			<when test="boolean($number-style)">
				<choose>
					<when test="string-length($number-style/@style:num-format) &gt; 0">
						<text>#</text>
					</when>
					<otherwise>
						<text>:</text>
					</otherwise>
				</choose>
			</when>
			<when test="boolean($bullet-style)">
				<text>*</text>
			</when>
		</choose>
	</template>


	<!-- 
		== Headings ==
	-->

	<template match="text:h">
		<if test="string-length(.) &gt; 0">
			<variable name="token">
				<call-template name="mk-heading-prefix">
					<with-param name="level" select="@text:outline-level"/>
				</call-template>
			</variable>
			<value-of select="$token"/>
			<text> </text>
			<apply-templates/>
			<text> </text>
			<value-of select="$token"/>
			<value-of select="$NL"/>
			<value-of select="$NL"/>
		</if>
	</template>

	<template match="text:index-title">
		<text>== </text>
		<apply-templates/>
		<text> ==</text>
		<value-of select="$NL"/>
		<value-of select="$NL"/>
	</template>

	<!-- 
		Function generating a wiki heading prefix.
		
		@param level
			The heading level. The value must be between 1 and 6.
	-->
	<template name="mk-heading-prefix">
		<param name="level"/>
		<choose>
			<when test="$level &gt; 6">
				<call-template name="mk-heading-prefix">
					<with-param name="level" select="6"/>
				</call-template>
			</when>
			<when test="$level &gt; 0">
				<text>=</text>
				<call-template name="mk-heading-prefix">
					<with-param name="level" select="$level - 1"/>
				</call-template>
			</when>
		</choose>
	</template>

	<!-- 
		Funktion generating a token consisting of the given character 
		repeated 'level' times.
		
		@param level
			The lengh of the result.
		@param char
			The character that should be repeated 'level' times.
	-->
	<template name="mk-token">
		<param name="level"/>
		<param name="char"/>
		<if test="$level &gt; 0">
			<value-of select="$char"/>
			<call-template name="mk-token">
				<with-param name="level" select="$level - 1"/>
				<with-param name="char" select="$char"/>
			</call-template>
		</if>
	</template>
	
	
	<!-- 
		== Tables ==
	 -->

	<template match="table:table">
		<value-of select="$NL"/>
		<text>{|</text>
		
		<choose>
			<when test="$USE_DEFAULT_TABLE_CLASS">
				<text> class="</text>
				<value-of select="$TABLE_CLASS"/>
				<text>"</text>
			</when>
			
			<otherwise>
				<variable name="style-element" select="key('style-ref', @table:style-name)"/>
				<variable name="table-align" select="$style-element/style:table-properties/@table:align"/>
				<!-- Table alignment using align -->
				<if test="boolean($table-align)">
					<variable name="align">
						<choose>
							<when test="$table-align='center'">
								<text>center</text>
							</when>
						</choose>
					</variable>
					<if test="string-length($align) &gt; 0">
						<text> align="</text>
						<value-of select="$align"/>
						<text>"</text>
					</if>
				</if>
				<variable name="style">
					<!-- Default setting to translate detailed office table cell styles correctly. -->
					<text>border-spacing:0;</text>
					<!-- Table alignment using css -->
					<if test="boolean($table-align)">
						<choose>
							<when test="$table-align='margins'">
								<text>margin:auto;</text>
							</when>
						</choose>
					</if>
					<if test="boolean($style-element/style:table-properties/@style:width)">
						<text>width:</text>
						<value-of select="$style-element/style:table-properties/@style:width"/>
						<text>;</text>
					</if>
				</variable>
				<text> style="</text>
				<value-of select="$style"/>
				<text>"</text>
			</otherwise>
		</choose>
		
		<value-of select="$NL"/>
		<apply-templates/>
		<text>|-</text>
		<value-of select="$NL"/>
		<text>|}</text>
		<value-of select="$NL"/>
	</template>

	<template match="table:table-header-rows">
		<apply-templates/>
	</template>

        <template match="table:table-row">
		<text>|-</text>

		<if test="not($USE_DEFAULT_TABLE_CLASS) and boolean(table:table-cell[1]/@table:style-name)">
			<variable name="style-name" select="table:table-cell[1]/@table:style-name"/>
			<variable name="total-style-name" select="count(table:table-cell/@table:style-name)"/>
			<variable name="total-equal-style-name" select="count(table:table-cell[@table:style-name=$style-name])"/>

                        <variable name="style">
				<if test="$total-equal-style-name=$total-style-name">
					<call-template name="translate-table-cell-properties">
						<with-param name="style-element" select="key('style-ref', $style-name)"/>
					</call-template>
				</if>
			</variable>

                        <if test="string-length($style) &gt; 0">
				<text> style="</text>
				<value-of select="$style"/>
				<text>"</text>
			</if>
		</if>

                <value-of select="$NL"/>
		<apply-templates/>
	</template>

	<template match="table:table-header-rows//table:table-cell">
		<text>!</text>
		<if test="@table:number-columns-spanned">
			<text>colspan="</text>
			<value-of select="@table:number-columns-spanned"/>
			<text>" | </text>
		</if>

		<!-- Cell alignment -->
		<if test="text:p and count(*) = 1">
			<variable name="style-number">
				<call-template name="mk-style-set">
					<with-param name="node" select="text:p"/>
				</call-template>
			</variable>

			<variable name="code"
				select="($style-number mod (2 * $CODE_BIT)) - ($style-number mod ($CODE_BIT)) != 0"/>
			<variable name="center"
				select="($style-number mod (2 * $CENTER_BIT)) - ($style-number mod ($CENTER_BIT)) != 0"/>
			<variable name="right"
				select="($style-number mod (2 * $RIGHT_BIT)) - ($style-number mod ($RIGHT_BIT)) != 0"/>

			<choose>
				<when test="$center">
					<text> align=center</text>
				</when>
				<when test="$right">
					<text> align=right</text>
				</when>
			</choose>
		</if>

		<if test="not($USE_DEFAULT_TABLE_CLASS) and boolean(@table:style-name)">
			<variable name="style-name" select="@table:style-name"/>

			<variable name="style">
				<!-- Only if cells have a different style-name -->
				<if test="count(../table:table-cell/@table:style-name) !=  count(../table:table-cell[@table:style-name=$style-name]) and count(../table:table-cell/@table:style-name) &gt; 0">
					<call-template name="translate-table-cell-properties">
						<with-param name="style-element" select="key('style-ref', $style-name)"/>
					</call-template>
				</if>
                        </variable>
			
			<if test="string-length($style) &gt; 0">
				<text> style="</text>
				<value-of select="$style"/>
				<text>" </text>
			</if>
		</if>
		<text>| </text>
		<apply-templates/>
		<value-of select="$NL"/>
        </template>

	<template match="table:table-cell">
		<text>|</text>
		<if test="@table:number-columns-spanned">
			<text> colspan="</text>
			<value-of select="@table:number-columns-spanned"/>
			<text>" </text>
		</if>

		<!-- Cell alignment -->
		<if test="text:p and count(*) = 1">
			<variable name="style-number">
				<call-template name="mk-style-set">
					<with-param name="node" select="text:p"/>
				</call-template>
			</variable>

			<variable name="code"
				select="($style-number mod (2 * $CODE_BIT)) - ($style-number mod ($CODE_BIT)) != 0"/>
			<variable name="center"
				select="($style-number mod (2 * $CENTER_BIT)) - ($style-number mod ($CENTER_BIT)) != 0"/>
			<variable name="right"
				select="($style-number mod (2 * $RIGHT_BIT)) - ($style-number mod ($RIGHT_BIT)) != 0"/>

			<choose>
				<when test="$center">
					<text> align=center</text>
				</when>
				<when test="$right">
					<text> align=right</text>
				</when>
			</choose>
		</if>

		<if test="not($USE_DEFAULT_TABLE_CLASS) and boolean(@table:style-name)">
			<variable name="style-name" select="@table:style-name"/>

                        <variable name="style">
				<!-- Only if cells have a different style-name -->
				<if test="count(../table:table-cell/@table:style-name) !=  count(../table:table-cell[@table:style-name=$style-name]) and count(../table:table-cell/@table:style-name) &gt; 0">
					<call-template name="translate-table-cell-properties">
						<with-param name="style-element" select="key('style-ref', $style-name)"/>
					</call-template>
                                </if>
				<!-- Font color -->
				<if test="text:p and count(*) = 1">
					<if test="boolean(text:p/@text:style-name)">
						<variable name="style-element" select="key('style-ref', text:p/@text:style-name)"/>

						<call-template name="translate-style-property">
							<with-param name="style-name" select="'color'"/>
							<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
						</call-template>
					</if>
				</if>
			</variable>
			
			<if test="string-length($style) &gt; 0">
				<text> style="</text>
				<value-of select="$style"/>
				<text>" </text>
			</if>
		</if>
		<text>| </text>
		<apply-templates/>
		<value-of select="$NL"/>
	</template>

	<template name="translate-table-cell-properties">
		<param name="style-element"/>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'background-color'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:background-color"/>
		</call-template>

		<call-template name="translate-style-property">
			<with-param name="style-name" select="'border'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:border"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'border-top'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:border-top"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'border-bottom'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:border-bottom"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'border-left'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:border-left"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'border-right'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:border-right"/>
		</call-template>

		<call-template name="translate-style-property">
			<with-param name="style-name" select="'padding'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:padding"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'padding-top'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:padding-top"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'padding-bottom'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:padding-bottom"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'padding-left'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:padding-left"/>
		</call-template>
		<call-template name="translate-style-property">
			<with-param name="style-name" select="'padding-right'"/>
			<with-param name="style-property" select="$style-element/style:table-cell-properties/@fo:padding-right"/>
		</call-template>
	</template>

        <template name="translate-style-property">
		<param name="style-name"/>
		<param name="style-property"/>
		
		<if test="boolean($style-property)">
			<value-of select="$style-name"/>
			<text>:</text>
			<value-of select="string($style-property)"/>
			<text>;</text>
		</if>
	</template>

	<!-- 
		== WikiMath == 
	 -->

    <!--
       Make sure to join sibling node that are all formatted with WikiMath style without repeating
       the <math>..</math> markup.

       Do not apply any transformation to the contents marked as WikiMath.
   -->
	<template match="text:span[@text:style-name='WikiMath']">
		<value-of select="'&lt;math&gt;'"/>
		<value-of select="string(.)"/>
		<value-of select="'&lt;/math&gt;'"/>
	</template>

   <template match="text:span[@text:style-name='WikiMath' and boolean(preceding-sibling::node()[position()=1 and local-name(.)='span' and @text:style-name='WikiMath'])]">
       <value-of select="string(.)"/>
       <value-of select="'&lt;/math&gt;'"/>
   </template>

   <template match="text:span[@text:style-name='WikiMath' and boolean(following-sibling::node()[position()=1 and local-name(.)='span' and @text:style-name='WikiMath'])]">
       <value-of select="'&lt;math&gt;'"/>
       <value-of select="string(.)"/>
   </template>

   <template match="text:span[@text:style-name='WikiMath' and boolean(following-sibling::node()[position()=1 and local-name(.)='span' and @text:style-name='WikiMath']) and boolean(preceding-sibling::node()[position()=1 and local-name(.)='span' and @text:style-name='WikiMath'])]">
       <value-of select="string(.)"/>
    </template>

	<!-- 
		== Native links == 
	 -->

	<template match="text:a">
		<variable name="link-ref" select="@xlink:href"/>
		<choose>
			<when test="string-length($link-ref) &gt; 0">
				<choose>
					<when test="starts-with($link-ref, '#')">
						<text>[[</text>
						<choose>
							<when test="contains($link-ref, '_')">
								<value-of select="translate($link-ref,'_','')"/>
							</when>
							<otherwise>
								<value-of select="$link-ref"/>
							</otherwise>
						</choose>
						<text>|</text>
						<choose>
							<when test="text:tab and ancestor::text:index-body">
								<value-of select="node()[1]"/>
							</when>
							<otherwise>
								<value-of select="string(.)"/>
							</otherwise>
						</choose>
						<text>]]</text>
					</when>

                                        <otherwise>
						<text>[</text>
						<value-of select="$link-ref"/>
						<text> </text>
						<value-of select="string(.)"/>
						<text>]</text>
					</otherwise>
				</choose>
			</when>
			
			<otherwise>
				<apply-templates/>
			</otherwise>
		</choose>
	</template>


	<!-- 
		== WikiLink == 
	 -->

	<template match="text:span[@text:style-name='WikiLink']">
		<value-of select="'[['"/>
		<variable name="link-def" select="string(.)"/>
		<variable name="link-label" select="normalize-space(substring-before($link-def, '['))"/>
		<variable name="link-ref" select="normalize-space(substring-before(substring-after($link-def, '['), ']'))"/>
		<choose>
			<when test="boolean($link-ref)">
			<value-of select="concat($link-ref, '|', $link-label)"/>
		</when>
		<otherwise>
			<value-of select="$link-def"/>
		</otherwise>
		</choose>
		<value-of select="']]'"/>
	</template>
	
	
	<!-- 
		== Paragraphs == 
	 -->

	<template match="text:p">
		<variable name="alignment">
			<call-template name="mk-style-set">
				<with-param name="node" select="."/>
			</call-template>
		</variable>

		<variable name="code" 
			select="($alignment mod (2 * $CODE_BIT)) - ($alignment mod ($CODE_BIT)) != 0"/>
		<variable name="center" 
			select="($alignment mod (2 * $CENTER_BIT)) - ($alignment mod ($CENTER_BIT)) != 0"/>
		<variable name="right" 
			select="($alignment mod (2 * $RIGHT_BIT)) - ($alignment mod ($RIGHT_BIT)) != 0"/>

		<variable name="style">
			<choose>
				<when test="name(parent::*) != 'table:table-cell'">
					<choose>
						<when test="$center">
							<text>text-align:center;</text>
						</when>
						<when test="$right">
							<text>text-align:right;</text>
						</when>
					</choose>
					<if test="boolean(@text:style-name)">
						<variable name="style-element" select="key('style-ref', @text:style-name)"/>

						<call-template name="translate-style-property">
							<with-param name="style-name" select="'color'"/>
							<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
						</call-template>
						<call-template name="translate-style-property">
							<with-param name="style-name" select="'margin-left'"/>
							<with-param name="style-property" select="$style-element/style:paragraph-properties/@fo:margin-left"/>
						</call-template>
						<call-template name="translate-style-property">
							<with-param name="style-name" select="'margin-right'"/>
							<with-param name="style-property" select="$style-element/style:paragraph-properties/@fo:margin-right"/>
						</call-template>
					</if>
				</when>
				<otherwise>
					<if test="count(../text:p) &gt; 1 and boolean(@text:style-name)">
						<variable name="style-element" select="key('style-ref', @text:style-name)"/>

                                                <call-template name="translate-style-property">
							<with-param name="style-name" select="'color'"/>
							<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
						</call-template>
					</if>
				</otherwise>
			</choose>
		</variable>

		<if test="string-length($style) &gt; 0">
			<text>&lt;div style="</text>
			<value-of select="$style"/>
			<text>"&gt;</text>
		</if>

		<apply-templates/>

		<if test="string-length($style) &gt; 0">
			<text>&lt;/div&gt;</text>
		</if>

		<variable name="paragraph-right" 
 			select="./following-sibling::*[1]/self::text:p"/>

 		<choose>
 		<when test="boolean($paragraph-right)">
			<!-- 
				Insert end of line only if not within a list. Within wiki lists, 
				a line break leaves the current list item. 
			-->
			<choose>
				<when test="boolean(ancestor::text:list-item)">
					<text>&lt;br/&gt;</text>
				</when>
				<when test="$code">
					<variable name="style-right">
						<call-template name="mk-style-set">
							<with-param name="node" select="$paragraph-right"/>
						</call-template>
					</variable>
			
					<variable name="code-right" 
						select="($style-right mod (2 * $CODE_BIT)) - ($style-right mod ($CODE_BIT)) != 0"/>
				
					<choose>
						<when test="$code-right">
							<choose>
								<when test="$CODE_JOIN_PARAGRAPHS">
									<value-of select="$NL"/>
								</when>
								
								<otherwise>
									<value-of select="$NL"/>
									<value-of select="' '"/>
									<value-of select="$NL"/>
								</otherwise>
							</choose>
						</when>
						<otherwise>
							<value-of select="$NL"/>
							<value-of select="$NL"/>
						</otherwise>
					</choose>
				</when>
				<otherwise>
					<value-of select="$NL"/>
					<value-of select="$NL"/>
				</otherwise>
			</choose>
 		</when>
 		<when test="boolean(./following::*[1]/self::text:h) or boolean(./following::*[1]/self::table:table) or boolean(./following::*[1]/self::text:bibliography)">
 			<!-- Newline before following heading or table. -->
 			<value-of select="$NL"/>
 			<value-of select="$NL"/>
 		</when>
 		<when test="not(./following-sibling::*[1]) and name(./following::*[1])='text:p' and ancestor::text:list-item">
 			<!-- End of the list -->
 			<value-of select="$NL"/>
 			<value-of select="$NL"/>
 		</when>
 		</choose>
	</template>

 	<template match="text:p[string-length(.) = 0 and string-length(preceding-sibling::*[1]/self::text:p) &gt; 0]">
		<value-of select="$NL"/>
	</template>

	<!-- 
		== Preformatted text == 
	-->
	
	<template match="text:s">
		<variable name="style">
			<call-template name="mk-style-set">
				<with-param name="node" select="."/>
			</call-template>
		</variable>

		<variable name="code" 
			select="($style mod (2 * $CODE_BIT)) - ($style mod ($CODE_BIT)) != 0"/>
		
		<if test="$code">
			<choose>
				<when test="@text:c">
					<call-template name="mk-token">
						<with-param name="level" select="@text:c"/>
						<with-param name="char" select="' '"/>
					</call-template>
				</when>
				<otherwise>
					<value-of select="' '"/>
				</otherwise>
			</choose>
		</if>
	</template>
	
	<template match="text:span[string-length(.) &gt; 0]">
		<if test="boolean(@text:style-name)">
			<variable name="style-element" select="key('style-ref', @text:style-name)"/>
			<variable name="style">
				<call-template name="translate-style-property">
					<with-param name="style-name" select="'background-color'"/>
					<with-param name="style-property" select="$style-element/style:text-properties/@fo:background-color"/>
				</call-template>
				<call-template name="translate-style-property">
					<with-param name="style-name" select="'color'"/>
					<with-param name="style-property" select="$style-element/style:text-properties/@fo:color"/>
				</call-template>
			</variable>

			<if test="string-length($style) &gt; 0">
				<text>&lt;span style="</text>
				<value-of select="$style"/>
				<text>"&gt;</text>
			</if>

			<apply-templates/>

			<if test="string-length($style) &gt; 0">
				<text>&lt;/span&gt;</text>
			</if>
		</if>
	</template>

	<template match="text:tab">
		<variable name="style">
			<call-template name="mk-style-set">
				<with-param name="node" select="."/>
			</call-template>
		</variable>

		<variable name="code" 
			select="($style mod (2 * $CODE_BIT)) - ($style mod ($CODE_BIT)) != 0"/>
		
		<if test="$code">
			<value-of select="$CODE_TAB_REPLACEMENT"/>
		</if>
	</template>
	
	<template match="text:line-break">
		<variable name="style">
			<call-template name="mk-style-set">
				<with-param name="node" select="."/>
			</call-template>
		</variable>

		<variable name="code" 
			select="($style mod (2 * $CODE_BIT)) - ($style mod ($CODE_BIT)) != 0"/>
		
		<if test="$code">
			<value-of select="$NL"/>
			<value-of select="' '"/>
		</if>
	</template>

	<!-- 
		Footnotes
	-->
	
	<template match="text:note-body">
		<variable name="note" select="./parent::text:note"/>
		
		<if test="$note/@text:note-class = 'footnote'">
			<text>&lt;ref name="</text>
			<value-of select="$note/@text:id"/>
			<text>"&gt;</text>
			<apply-templates/>
			<text>&lt;/ref&gt;</text>
		</if>
	</template>
	
	<template match="text:note-ref[@text:note-class='footnote']">
		<text>&lt;ref name="</text>
		<value-of select="@text:ref-name"/>
		<text>"/&gt;</text>
	</template>
	
	 
	<!-- 
		== Images == 
	-->
	
 	<template match="draw:text-box[boolean(.//draw:image)]">
 		<variable name="image" select=".//draw:image[1]"/>
 		
 		<variable name="image-description">
 			<apply-templates/>
 		</variable>
 		
		<variable name="picture">
			<text>[[</text>
			<call-template name="mk-image-name">
				<with-param name="image" select="$image"/>
			</call-template>
			<text>|thumb</text>
		</variable>

		<!-- Picture markup + Horizontal & Vertical align -->
		<call-template name="mk-image-align">
			<with-param name="picture" select="$picture"/>
		</call-template>

                <!-- Image caption -->
                <text>|</text>
		<value-of select="normalize-space($image-description)"/>

                <text>]]</text>
 	</template>
 	
 	<template match="draw:image[not(boolean(ancestor::draw:text-box))]">
		<variable name="picture">
			<text>[[</text>
			<call-template name="mk-image-name">
				<with-param name="image" select="."/>
			</call-template>
		</variable>

		<!-- Picture markup + Horizontal & Vertical align -->
		<call-template name="mk-image-align">
			<with-param name="picture" select="$picture"/>
		</call-template>

		<!-- Image alt -->
		<if test="name(following-sibling::*)='svg:title'">
			<text>|alt="</text>
			<value-of select="following-sibling::*/text()"/>
			<text>"</text>
		</if>

		<text>]]</text>
	</template>

	<template name="mk-image-align">
		<param name="picture"/>

		<choose>
		<when test="name(..)='draw:frame' and boolean(../@draw:style-name)">
			<variable name="style-element" select="key('style-ref', ../@draw:style-name)"/>
			<choose>
				<when test="boolean($style-element/style:graphic-properties/@style:wrap)">
					<choose>
						<!-- wrap=none -->
						<when test="$style-element/style:graphic-properties/@style:wrap='none'">
							<text>{{clear}}</text>
							<value-of select="$NL"/>
							<value-of select="$picture"/>
							<choose>
								<when test="boolean($style-element/style:graphic-properties/@style:horizontal-pos)">
									<choose>
										<when test="$style-element/style:graphic-properties/@style:horizontal-pos='center'">
											<text>|center</text>
										</when>
										<otherwise>
											<text>|none</text>
										</otherwise>
									</choose>
								</when>
								<otherwise>
									<text>|none</text>
								</otherwise>
							</choose>
						</when>
						<!-- wrap != none -->
						<otherwise>
							<value-of select="$picture"/>
							<!-- Horizontal align -->
							<call-template name="mk-image-horizontal-align">
								<with-param name="style-element" select="$style-element"/>
							</call-template>
							<!-- Vertical align -->
							<call-template name="mk-image-vertical-align">
								<with-param name="style-element" select="$style-element"/>
							</call-template>
						</otherwise>
					</choose>
				</when>
				<!-- without wrap -->
				<otherwise>
					<value-of select="$picture"/>
					<!-- Horizontal align -->
					<call-template name="mk-image-horizontal-align">
						<with-param name="style-element" select="$style-element"/>
					</call-template>
					<!-- Vertical align -->
					<call-template name="mk-image-vertical-align">
						<with-param name="style-element" select="$style-element"/>
					</call-template>
				</otherwise>
			</choose>
		</when>
		<otherwise>
			<value-of select="$picture"/>
		</otherwise>
		</choose>
	</template>

	<template name="mk-image-horizontal-align">
		<param name="style-element"/>

		<if test="boolean($style-element/style:graphic-properties/@style:horizontal-pos)">
			<choose>
				<when test="$style-element/style:graphic-properties/@style:horizontal-pos='right'">
					<text>|right</text>
				</when>
				<when test="$style-element/style:graphic-properties/@style:horizontal-pos='left'">
					<text>|left</text>
				</when>
			</choose>
		</if>
	</template>

	<template name="mk-image-vertical-align">
		<param name="style-element"/>

		<if test="boolean($style-element/style:graphic-properties/@style:vertical-pos)">
			<choose>
				<when test="$style-element/style:graphic-properties/@style:vertical-pos='top'">
					<text>|top</text>
				</when>
				<when test="$style-element/style:graphic-properties/@style:vertical-pos='middle'">
					<text>|middle</text>
				</when>
				<when test="$style-element/style:graphic-properties/@style:vertical-pos='below'">
					<text>|below</text>
				</when>
			</choose>
		</if>
	</template>

	<template name="mk-image-name">
		<param name="image"/>
		
 		<variable name="base-name">
 			<call-template name="mk-base-name">
 				<with-param name="href" select="$image/@xlink:href"/>
 			</call-template>
 		</variable>
 		
		<if test="not(starts-with($base-name, 'Image:'))">
			<value-of select="'Image:'"/>
		</if>
		<value-of select="$base-name"/>
	</template>	
 	
 	<template name="mk-base-name">
 		<param name="href"/>
 		
 		<variable name="result" select="substring-after($href, '/')"/>
 		<choose>
 			<when test="boolean($result)">
 				<call-template name="mk-base-name">
 					<with-param name="href" select="$result"/>
 				</call-template>
 			</when>
 			<otherwise>
 				<value-of select="$href"/>
 			</otherwise>
 		</choose>
 	</template>
 	
  	<!-- Frames -->
 	
 	<template match="draw:frame">
 		<choose>
 			<when test="draw:object/math:math">
 				<apply-templates select="draw:object/math:math[1]"/>
 			</when>

 			<when test="draw:image">
 				<apply-templates select="draw:image[1]"/>
 			</when>
 			
 			<otherwise>
 				<apply-templates select="./*[1]"/>
 			</otherwise>
 		</choose>
 	
 	</template>
 	
 	<!-- Formulas (Objects) -->
 	
	<include href="math/mmltex.xsl"/>
	
	<template match="math:math" priority="1">
		<text>&lt;math&gt;</text>
		<apply-templates/>
		<text>&lt;/math&gt;</text>
	</template>
	
	
 	<!-- 
 		References
 	 -->
 	 
	<!-- TODO: text:bibliography-mark -->

 	<template match="text:reference-ref">
 		<variable name="reference-mark" select="key('reference-resolution', @text:ref-name)"/>
 		
 		<choose>
 			<when test="boolean($reference-mark)">
		 		<!-- 
		 			In wiki syntax, only a local reference to a heading can be inserted. 
		 			If the link target is a descendant of a heading element, a link can be
		 			inserted in the result. -->
		 		<variable name="header-anchor" select="$reference-mark/ancestor::text:h[1]"/>
		 		<if test="boolean($header-anchor)">
		 			<text>[[#</text>
		 			<value-of select="string($header-anchor)"/>
		 			<text>|</text>
		 		</if>
		 		
		 		<variable name="reference-text" select="string(.)"/>
		 		
		 		<choose>
		 			<!-- Check, whether the reference text is cached in the document. -->
		 			<when test="string-length($reference-text) &gt; 0">
		 				<value-of select="$reference-text"/>
		 			</when>
		 			
		 			<otherwise>
		 				<!-- 
		 					TODO: Evaluate the @text:reference-format attribute and 
		 					generate the replacement text (difficult).-->
		 				<text>(REFERENCE TEXT UNAVAILABLE: "</text>
		 				<value-of select="@text:ref-name"/>
		 				<text>")</text>
		 			</otherwise>
		 		</choose>
		 		
		 		<if test="boolean($header-anchor)">
		 			<text>]]</text>
		 		</if>
 			</when>

 			<otherwise>
 				<text>(UNDEFINED REFERENCE: "</text>
 				<value-of select="@text:ref-name"/>
 				<text>")</text>
 			</otherwise>
 		</choose>
 	</template>
 	
 	<template match="text:reference-mark">
 		<!-- TODO: Output an anchor. -->
 		<apply-templates/>
 	</template>

 	<template match="text:reference-mark-start">
 		<!-- TODO: Output an anchor. -->
 	</template>

	<template match="text:bookmark-start">
		<if test="boolean(@text:name)">
			<variable name="bookmark">
				<choose>
					<when test="contains(@text:name,'_')">
						<value-of select="translate(@text:name,'_','')"/>
					</when>
					<otherwise>
						<value-of select="@text:name"/>
					</otherwise>
				</choose>
			</variable>
			<text>{{anchor|</text>
			<value-of select="$bookmark"/>
			<text>}} </text>
		</if>
		<apply-templates/>
	</template>

	<!--
		== Plain text == 
	-->

	<template match="text:p/text() | text:h/text() | text:span/text() | text:sequence/text() | text:sequence-ref/text() | text:a/text() | text:bookmark-ref/text() | text:reference-mark/text() | text:date/text() | text:time/text() | text:page-number/text() | text:sender-firstname/text() | text:sender-lastname/text() | text:sender-initials/text() | text:sender-title/text() | text:sender-position/text() | text:sender-email/text() | text:sender-phone-private/text() | text:sender-fax/text() | text:sender-company/text() | text:sender-phone-work/text() | text:sender-street/text() | text:sender-city/text() | text:sender-postal-code/text() | text:sender-country/text() | text:sender-state-or-province/text() | text:author-name/text() | text:author-initials/text() | text:chapter/text() | text:file-name/text() | text:template-name/text() | text:sheet-name/text() | text:variable-get/text() | text:variable-input/text() | text:user-field-get/text() | text:user-field-input/text() | text:expression/text() | text:text-input/text() | text:initial-creator/text() | text:creation-date/text() | text:creation-time/text() | text:description/text() | text:user-defined/text() | text:print-date/text() | text:printed-by/text() | text:title/text() | text:subject/text() | text:keywords/text() | text:editing-cycles/text() | text:editing-duration/text() | text:modification-date/text() | text:creator/text() | text:modification-time/text() | text:page-count/text() | text:paragraph-count/text() | text:word-count/text() | text:character-count/text() | text:table-count/text() | text:image-count/text() | text:object-count/text() | text:database-display/text() | text:database-row-number/text() | text:database-name/text() | text:page-variable-get/text() | text:placeholder/text() | text:conditional-text/text() | text:hidden-text/text() | text:execute-macro/text() | text:dde-connection/text() | text:measure/text() | text:table-formula/text()">
		<choose>
			<when test="boolean(./ancestor::table:table-header-rows | ./ancestor::text:h)">
				<!-- 
					No explicit styles within table headings or section headings, 
					because those styles are consistently declared by the Wiki engine. -->
				<value-of select="."/>
			</when>
			
			<when test="string-length(.) &gt; 0">
				<variable name="style">
					<call-template name="mk-style-set">
						<with-param name="node" select="."/>
					</call-template>
				</variable>
				
				<variable name="current-paragraph" 
					select="./ancestor::text:p[1]"/>
				<variable name="paragraph-id" 
					select="generate-id($current-paragraph)"/>
				<variable name="frames" 
					select="$current-paragraph/descendant::draw:frame"/>
				<variable name="frame-count" 
					select="count($frames)"/>
					
				<!-- 
					The current style context consists of all text nodes that are 
					descendants of the paragraph ancestor of this text node but not 
					descendants of any frame nodes that are descendants of the current 
					text nodes paragraph.
				 -->
				<variable name="context" 
					select="$current-paragraph//text()[not(boolean(./ancestor::draw:frame[1]) and count(./ancestor::draw:frame[1] | $frames) = $frame-count)]"/>
				<variable name="context-size" select="count($context)"/>

				<variable name="context-index">
					<call-template name="mk-context-index">
						<with-param name="current-id" select="generate-id(.)"/>
						<with-param name="context" select="$context"/>
						<with-param name="test-index" select="1"/>
					</call-template>
				</variable>

				<variable name="style-left">
					<choose>
						<when test="$context-index &gt; 1">
							<variable name="left" select="$context[$context-index - 1]"/>
							<!-- 
								The preceding text node is a child of this nodes topmost 
								styled ancestor. This means that the result of the 
								transformation will be directly concatenated. 
								-->
							<call-template name="mk-style-set">
								<with-param name="node" select="$left"/>
							</call-template>
						</when>
						<otherwise>
							<value-of select="$NO_STYLE"/>
						</otherwise>
					</choose>
				</variable>
				<variable name="style-right">
					<choose>
						<when test="$context-index &lt; count($context)">
							<variable name="right" select="$context[$context-index + 1]"/>
							<!-- 
								The preceding text node is a child of this nodes topmost 
								styled ancestor. This means that the result of the 
								transformation will be directly concatenated. 
								-->
							<call-template name="mk-style-set">
								<with-param name="node" select="$right"/>
							</call-template>
						</when>
						<otherwise>
							<value-of select="$NO_STYLE"/>
						</otherwise>
					</choose>
				</variable>

				<variable name="bold" 
					select="($style mod (2 * $BOLD_BIT)) != 0"/>
				<variable name="italic" 
					select="($style mod (2 * $ITALIC_BIT)) - ($style mod ($ITALIC_BIT)) != 0"/>
				<variable name="underline" 
					select="($style mod (2 * $UNDERLINE_BIT)) - ($style mod ($UNDERLINE_BIT)) != 0"/>
				<variable name="superscript" 
					select="($style mod (2 * $SUPERSCRIPT_BIT)) - ($style mod ($SUPERSCRIPT_BIT)) != 0"/>
				<variable name="subscript" 
					select="($style mod (2 * $SUBSCRIPT_BIT)) - ($style mod ($SUBSCRIPT_BIT)) != 0"/>
				<variable name="code" 
					select="($style mod (2 * $CODE_BIT)) - ($style mod ($CODE_BIT)) != 0"/>
				<variable name="typewriter" 
					select="($style mod (2 * $TYPEWRITER_BIT)) - ($style mod ($TYPEWRITER_BIT)) != 0"/>

				<variable name="bold-left" 
					select="($style-left mod (2 * $BOLD_BIT)) != 0"/>
				<variable name="italic-left" 
					select="($style-left mod (2 * $ITALIC_BIT)) - ($style-left mod ($ITALIC_BIT)) != 0"/>
				<variable name="underline-left" 
					select="($style-left mod (2 * $UNDERLINE_BIT)) - ($style-left mod ($UNDERLINE_BIT)) != 0"/>
				<variable name="superscript-left" 
					select="($style-left mod (2 * $SUPERSCRIPT_BIT)) - ($style-left mod ($SUPERSCRIPT_BIT)) != 0"/>
				<variable name="subscript-left" 
					select="($style-left mod (2 * $SUBSCRIPT_BIT)) - ($style-left mod ($SUBSCRIPT_BIT)) != 0"/>
				<variable name="typewriter-left" 
					select="($style-left mod (2 * $TYPEWRITER_BIT)) - ($style-left mod ($TYPEWRITER_BIT)) != 0"/>

				<variable name="bold-right" 
					select="($style-right mod (2 * $BOLD_BIT)) != 0"/>
				<variable name="italic-right" 
					select="($style-right mod (2 * $ITALIC_BIT)) - ($style-right mod ($ITALIC_BIT)) != 0"/>
				<variable name="underline-right" 
					select="($style-right mod (2 * $UNDERLINE_BIT)) - ($style-right mod ($UNDERLINE_BIT)) != 0"/>
				<variable name="superscript-right" 
					select="($style-right mod (2 * $SUPERSCRIPT_BIT)) - ($style-right mod ($SUPERSCRIPT_BIT)) != 0"/>
				<variable name="subscript-right" 
					select="($style-right mod (2 * $SUBSCRIPT_BIT)) - ($style-right mod ($SUBSCRIPT_BIT)) != 0"/>
				<variable name="typewriter-right" 
					select="($style-right mod (2 * $TYPEWRITER_BIT)) - ($style-right mod ($TYPEWRITER_BIT)) != 0"/>

				<!-- Debugging: Add style infos to the output. -->
				<!-- 
				<value-of select="'{'"/>
				<value-of select="$style-left"/>
				<value-of select="'-'"/>
				<value-of select="$style"/>
				<value-of select="','"/>
				<value-of select="$context-size"/>
				<value-of select="'}'"/>
				 -->

				<if test="$superscript and not($superscript-left)">
					<text>&lt;sup&gt;</text>
				</if>
				<if test="$subscript and not($subscript-left)">
					<text>&lt;sub&gt;</text>
				</if>
				<if test="not($code) and $typewriter and not($typewriter-left)">
					<text>&lt;tt&gt;</text>
				</if>
				<if test="$underline and not($underline-left)">
					<text>&lt;u&gt;</text>
				</if>
				<if test="$bold and not($bold-left)">
					<text>'''</text>
				</if>
				<if test="$italic and not($italic-left)">
					<text>''</text>
				</if>

				<call-template name="render-quoted-text">
					<with-param name="text" select="."/>
				</call-template>

				<if test="$italic and not($italic-right)">
					<text>''</text>
				</if>
				<if test="$bold and not($bold-right)">
					<text>'''</text>
				</if>
				<if test="$underline and not($underline-right)">
					<text>&lt;/u&gt;</text>
				</if>
				<if test="not($code) and $typewriter and not($typewriter-right)">
					<text>&lt;/tt&gt;</text>
				</if>
				<if test="$subscript and not($subscript-right)">
					<text>&lt;/sub&gt;</text>
				</if>
				<if test="$superscript and not($superscript-right)">
					<text>&lt;/sup&gt;</text>
				</if>

				<!-- Debugging: Add style details to the output. -->
				<!-- 
				<value-of select="'{'"/>
				<value-of select="$style"/>
				<value-of select="'-'"/>
				<value-of select="$style-right"/>
				<value-of select="'}'"/>
				 -->

			</when>
		</choose>
	</template>

	<!-- 
		Function for looking up the position of a node identified by the given 
		'current-id' within a node set 'context'. 
		
		The search starts with the index 'test-index'. The search is recursive 
		in the 'test-index' argument. To save recursion depth, each recursive call 
		iteratively tests a fixed number of indexes (by loop unrolling).
	 -->
	<template name="mk-context-index">
		<param name="current-id"/>
		<param name="context"/>
		<param name="test-index"/>
		
		<variable name="context-size" select="count($context)"/>
		
		<choose>
			<when test="context-size &lt; $test-index">
			</when>
			<when test="$current-id = generate-id($context[$test-index])">
				<value-of select="$test-index"/>
			</when>
			<when test="context-size &lt; ($test-index + 1)">
			</when>
			<when test="$current-id = generate-id($context[$test-index + 1])">
				<value-of select="$test-index + 1"/>
			</when>
			<when test="context-size &lt; ($test-index + 2)">
			</when>
			<when test="$current-id = generate-id($context[$test-index + 2])">
				<value-of select="$test-index + 2"/>
			</when>
			<when test="context-size &lt; ($test-index + 3)">
			</when>
			<when test="$current-id = generate-id($context[$test-index + 3])">
				<value-of select="$test-index + 3"/>
			</when>
			<when test="context-size &lt; ($test-index + 4)">
			</when>
			<when test="$current-id = generate-id($context[$test-index + 4])">
				<value-of select="$test-index + 4"/>
			</when>
			<when test="context-size &lt; ($test-index + 5)">
			</when>
			<when test="$current-id = generate-id($context[$test-index + 5])">
				<value-of select="$test-index + 5"/>
			</when>
			<when test="context-size &lt; ($test-index + 6)">
			</when>
			<otherwise>
				<call-template name="mk-context-index">
					<with-param name="current-id" select="$current-id"/>
					<with-param name="context" select="$context"/>
					<with-param name="test-index" select="$test-index + 6"/>
				</call-template>
			</otherwise>
		</choose>
	</template>
	
	<template name="render-quoted-text">
		<param name="text"/>
		
		<choose>
			<when test="contains($text, '[[') or starts-with($text, '----') or starts-with($text, '=') or starts-with($text, '*')  or starts-with($text, ';')  or starts-with($text, '#')">
				<text>&lt;nowiki&gt;</text>
					<call-template name="render-encoded-text">
						<with-param name="text" select="$text"/>
					</call-template>
				<text>&lt;/nowiki&gt;</text>			
			</when>
			<otherwise>
				<call-template name="render-encoded-text">
					<with-param name="text" select="$text"/>
				</call-template>
			</otherwise>
		</choose>
	</template>

	<template name="render-escaped-text">
		<param name="text"/>
		
		<choose>
			<when test="contains($text, '&lt;')">
				<call-template name="render-encoded-text">
					<with-param name="text" select="substring-before($text, '&lt;')"/>
				</call-template>
				<value-of select="'&amp;lt;'"/>
				<call-template name="render-escaped-text">
					<with-param name="text" select="substring-after($text, '&lt;')"/>
				</call-template>
			</when>
			<otherwise>
				<call-template name="render-encoded-text">
					<with-param name="text" select="$text"/>
				</call-template>
			</otherwise>
		</choose>
	</template>

	<template name="render-encoded-text">
		<param name="text"/>
		
		<choose>
			<when test="contains($text, '&#160;')">
				<value-of select="substring-before($text, '&#160;')"/>
				<value-of select="'&amp;nbsp;'"/>
				<call-template name="render-encoded-text">
					<with-param name="text" select="substring-after($text, '&#160;')"/>
				</call-template>
			</when>
			<otherwise>
				<value-of select="$text"/>
			</otherwise>
		</choose>
	</template>

	<!-- 
		== Wiki styles: bold, italics, ... == 
	 -->

	<template name="mk-style-set">
		<param name="node"/>
		
		<variable 
			name="context" 
			select="$node/ancestor-or-self::*[@text:style-name][1]"
		/>
		
		<choose>
			<when test="boolean($context)">
				<variable 
					name="style" 
					select="key('style-ref', $context/@text:style-name)"
				/>

				<!-- Debugging: Print inspected styles. -->				
				<!-- 
				<message>
					<value-of select="'=== '"/>
					<value-of select="$style/@style:name"/>
					<value-of select="' ==='"/>
				</message>
				 -->
		
				<call-template name="mk-style-set-internal">
					<with-param name="node" select="$context"/>
					<with-param name="style" select="$style"/>
					<with-param name="style-set" select="$NO_STYLE"/>
					<with-param name="style-mask" select="$NO_STYLE"/>
				</call-template>
			</when>
			<otherwise>
				<value-of select="$NO_STYLE"/>
			</otherwise>
		</choose>
	</template>
	
	<!-- 
		Compute the wiki style set that corresponds 
		to the given office style at the given context node. 
		
		@param node
			A node in which context the style is computed. If neither the given style 
			nor one of its linked styles does specify a style of the given type, 
			ancestor nodes of the given context node are considered.
		@param style
			A style:style element node. The style of the requested type is searched
			in the given style and its linked styles. 
		@style-set
			A bit set of styles already defined by the context.
		@style-mask
			A bit set of styles that must not be taken from the currently inspected 
			style, because those styles are already defined by the context.
			
		@return A bit set composed of the wiki style constants.
	-->
	<template name="mk-style-set-internal">
		<param name="node"/>
		<param name="style"/>
		<param name="style-set"/>
		<param name="style-mask"/>
		
		<variable name="text-properties" select="$style/style:text-properties"/>
		
		<!-- Decompose style-mask into individual bits. -->
		<variable name="bold-requested" 
			select="($style-mask mod (2 * $BOLD_BIT)) = 0"/>
		<variable name="italic-requested" 
			select="($style-mask mod (2 * $ITALIC_BIT)) - ($style-mask mod ($ITALIC_BIT)) = 0"/>
		<variable name="underline-requested" 
			select="($style-mask mod (2 * $UNDERLINE_BIT)) - ($style-mask mod ($UNDERLINE_BIT)) = 0"/>
		<variable name="superscript-requested" 
			select="($style-mask mod (2 * $SUPERSCRIPT_BIT)) - ($style-mask mod ($SUPERSCRIPT_BIT)) = 0"/>
		<variable name="subscript-requested" 
			select="($style-mask mod (2 * $SUBSCRIPT_BIT)) - ($style-mask mod ($SUBSCRIPT_BIT)) = 0"/>
		<variable name="typewriter-requested" 
			select="($style-mask mod (2 * $TYPEWRITER_BIT)) - ($style-mask mod ($TYPEWRITER_BIT)) = 0"/>
		<variable name="code-requested" 
			select="($style-mask mod (2 * $CODE_BIT)) - ($style-mask mod ($CODE_BIT)) = 0"/>
		<variable name="center-requested" 
			select="($style-mask mod (2 * $CENTER_BIT)) - ($style-mask mod ($CENTER_BIT)) = 0"/>
		<variable name="right-requested" 
			select="($style-mask mod (2 * $RIGHT_BIT)) - ($style-mask mod ($RIGHT_BIT)) = 0"/>
		
		<!-- Extract styles that are not already defined by the context. -->
		<variable name="bold-style">
			<choose>
				<when test="$bold-requested and boolean($text-properties/@fo:font-weight='bold')">
					<!-- Bold found in current style. -->
					<value-of select="$BOLD_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="bold-mask">
			<choose>
				<when test="$bold-requested and boolean($text-properties/@fo:font-weight)">
					<!-- 
						Other value than "bold" means that the character style is not 
						bold and no parent style must be considered.
					-->
					<value-of select="$BOLD_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		
		<variable name="italic-style">
			<choose>
				<when test="$italic-requested and boolean($text-properties/@fo:font-style='italic')">
					<!-- Italic found in current style. -->
					<value-of select="$ITALIC_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="italic-mask">
			<choose>
				<when test="$italic-requested and boolean($text-properties/@fo:font-style)">
					<!-- 
						Other value than "italic" means that the character style is not 
						italic and no parent style must be considered.
					-->
					<value-of select="$ITALIC_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="underline-style">
			<choose>
				<when test="$underline-requested and boolean($text-properties/@style:text-underline-style='solid')">
					<!-- Underline found in current style. -->
					<value-of select="$UNDERLINE_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="underline-mask">
			<choose>
				<when test="$underline-requested and boolean($text-properties/@style:text-underline-style='solid')">
					<!-- 
						Other value than "underline" means that the character style is not 
						underline and no parent style must be considered.
					-->
					<value-of select="$UNDERLINE_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="superscript-style">
			<choose>
				<when test="$superscript-requested and contains($text-properties/@style:text-position, 'super')">
					<value-of select="$SUPERSCRIPT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="superscript-mask">
			<choose>
				<when test="$superscript-requested and boolean($text-properties/@style:text-position)">
					<value-of select="$SUPERSCRIPT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="subscript-style">
			<choose>
				<when test="$subscript-requested and contains($text-properties/@style:text-position, 'sub')">
					<value-of select="$SUBSCRIPT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="subscript-mask">
			<choose>
				<when test="$subscript-requested and boolean($text-properties/@style:text-position)">
					<value-of select="$SUBSCRIPT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="typewriter-style">
			<choose>
				<when test="$typewriter-requested and ($style/@style:family='text') and boolean($text-properties/@style:font-name)">
					<variable name="font-face" 
						select="key('font-face-ref', $text-properties/@style:font-name)"/>
					<choose>
						<when test="$font-face/@style:font-pitch='fixed'">
							<value-of select="$TYPEWRITER_BIT"/>
						</when>
						<otherwise>
							<value-of select="$NO_STYLE"/>
						</otherwise>
					</choose>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="typewriter-mask">
			<choose>
				<!-- Note: Suppress the typewriter style on text within a code paragraph. -->
				<when test="$typewriter-requested and boolean($text-properties/@style:font-name)">
					<value-of select="$TYPEWRITER_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="code-style">
			<choose>
				<when test="$code-requested and ($style/@style:family='paragraph') and boolean($text-properties/@style:font-name)">
					<variable name="font-face" 
						select="key('font-face-ref', $text-properties/@style:font-name)"/>
					<choose>
						<when test="$font-face/@style:font-pitch='fixed' or (boolean(@style:display-name) and contains($CODE_STYLES, $style/@style:display-name))">
							<value-of select="$CODE_BIT"/>
						</when>
						<otherwise>
							<value-of select="$NO_STYLE"/>
						</otherwise>
					</choose>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="code-mask">
			<choose>
				<when test="$code-requested and ($style/@style:family='paragraph') and boolean($text-properties/@style:font-name)">
					<value-of select="$CODE_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		
		<variable name="center-style">
			<choose>
				<when test="$center-requested and ($style/@style:family='paragraph') and boolean($style/style:paragraph-properties/@fo:text-align='center')">
					<value-of select="$CENTER_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="center-mask">
			<choose>
				<when test="$center-requested and ($style/@style:family='paragraph') and boolean($style/style:paragraph-properties/@fo:text-align)">
					<value-of select="$CENTER_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>

		<variable name="right-style">
			<choose>
				<when test="$right-requested and ($style/@style:family='paragraph') and boolean($style/style:paragraph-properties/@fo:text-align='end')">
					<value-of select="$RIGHT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		<variable name="right-mask">
			<choose>
				<when test="$center-requested and ($style/@style:family='paragraph') and boolean($style/style:paragraph-properties/@fo:text-align)">
					<value-of select="$RIGHT_BIT"/>
				</when>
				<otherwise>
					<value-of select="$NO_STYLE"/>
				</otherwise>
			</choose>
		</variable>
		

		<!-- Compute the updated styles and mask. -->
		<!-- 
			Note: The bit masks style-mask, bold-style, italic-style,... are 
			guaranteed to be disjoint, therefore, addition can be use instead 
			of bitwise or (which is missing in XPath). -->
		<variable name="updated-style" 
			select="$style-set + $bold-style + $italic-style + $underline-style + $superscript-style + $subscript-style + $code-style + $typewriter-style + $center-style + $right-style"/>
		<variable name="updated-mask" 
			select="$style-mask + $bold-mask + $italic-mask + $underline-mask + $superscript-mask + $subscript-mask + $code-mask + $typewriter-mask + $center-mask + $right-mask"/>

		<!-- Inspect linked and nested styles. -->
		<choose>
			<when test="boolean($style/@style:parent-style-name)">
				<!-- Look through the style, the current style is based on. -->
				<call-template name="mk-style-set-internal">
					<with-param name="node" select="$node"/>
					<with-param name="style" select="key('style-ref', $style/@style:parent-style-name)"/>
					<with-param name="style-set" select="$updated-style"/>
					<with-param name="style-mask" select="$updated-mask"/>
				</call-template>
			</when>
			<otherwise>
				<variable name="ancestors" select="$node/ancestor::*[@text:style-name][1]"/>
				
				<!-- Debugging: Print currently inspected style.  -->
				<!-- 
				<message>
					<value-of select="'{'"/>
					<value-of select="$style/@style:name"/>
					<value-of select="','"/>
					<value-of select="$updated-style"/>
					<value-of select="','"/>
					<value-of select="$updated-mask"/>
					<value-of select="','"/>
					<value-of select="local-name($ancestors)"/>
					<value-of select="',('"/>
					<value-of select="$node"/>
					<value-of select="')'"/>
					<value-of select="'}'"/>
				</message>
				 -->
				 
				<!-- 
					If there is an ancestor that has a style, use that style, 
					otherwise, a style is not found. -->
				<choose>
					<when test="boolean($ancestors)">
						<!-- Look through the style of the nearest ancestor that has a style. -->
						<call-template name="mk-style-set-internal">
							<with-param name="node" select="$ancestors"/>
							<with-param name="style" select="key('style-ref', $ancestors/@text:style-name)"/>
							<with-param name="style-set" select="$updated-style"/>
							<with-param name="style-mask" select="$updated-mask"/>
						</call-template>
					</when>
					<otherwise>
						<!-- No more styles to inspect. Return the result. -->
						<value-of select="$updated-style"/>
					</otherwise>
				</choose>
			</otherwise>
		</choose>
	</template>


	<!-- 
		== Descending the tree == 
	-->

	<template match="/">
		<apply-templates/>
		<value-of select="$NL"/>
		<if test="boolean(//text:note[@text:note-class='footnote'])">
			<value-of select="$NL"/>
			<text>----</text>
			<value-of select="$NL"/>
			<text>&lt;references/&gt;</text>
			<value-of select="$NL"/>
		</if>
	</template>
	
	<template match="office:document-content">
		<apply-templates/>
	</template>

	<template match="office:body">
		<apply-templates/>
	</template>

	<template match="text:tracked-changes">
		<!-- Ignore change history. -->
	</template>

	<template match="office:* | text:* | draw:text-box | draw:a">
		<apply-templates/>
	</template>

	<template match="node()">
	</template>
</stylesheet>

<!--
  Local Variables:
	tab-width: 4
	sgml-indent-step: 4
  End:
-->