summaryrefslogtreecommitdiffstats
path: root/filters/kword/wml/test.wml
blob: d562c41150363bf978f50419639f02c446a26e68 (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
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
      "http://www.wapforum.org/DTD/wml_1.1.xml" >
<wml>
<card name="Test file for KWord">
<p>The quick brown fox jumps over the lazy dog</p>
</card>

<card>
<p>Here is the second card.</p>
</card>

<card>
<p>Some formatting test:</p>
<p><b>bold</b>, <i>italic</i>, <u>underline</u></p>
</card>

<card>
<p align="left">left justify</p>
<p align="center">center</p>
<p align="right">right justify</p>
</card>

<card>
<p>Hyperlink test, go to <a href="http://www.koffice.org">KOffice website</a></p>
</card>

<card>
<p>Table</p>

<table columns="2">
<tr>
  <td>top-left <b>bold</b> normal</td>
  <td>top-right <i>italic</i> normal</td>
</tr>
<tr>
  <td>bottom-left</td>
  <td>bottom-right</td>
</tr>
</table>

</card>

<card>
<p>Nested Table</p>

<b>
<table columns="2">
<tr>
  <td>top-left <b>bold</b> normal</td>
  <td>top-right <i>italic</i> normal</td>
</tr>
<tr>
  <td>bottom-left</td>
  <td>
  bottom-right

  <table columns="1">
  <tr><td>another cell</td></tr>
  </table>

  </td>
</tr>
</table>
</b>

</card>

<card>
<p>The very last card</p>
</card>

</wml>