blob: 7533953ee4bdc19a3f90c122f86ddf5cd347254d (
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
|
<?xml version="1.0"?>
<document xmlns="http://memberwebs.com/ns/rtfx/">
<info>
<title>This is a test RTF</title>
<author>Nate</author>
<operator>Nate</operator>
</info>
<stylesheet>
<style name="Normal"/>
<style name="heading 1"/>
<style name="Default Paragraph Font"/>
<style name="footnote text"/>
<style name="footnote reference"/>
</stylesheet>
<options>
<font size="12" color="0" name="Times New Roman"/>
</options>
<para style="heading 1"><font size="16" name="Arial"><b>This is a test RTF</b></font></para>
<para>Hi! I’m a test file. This is some <b>bold</b> text, and some <i>italic</i> text, as well as some <u>underline</u> text. And a bit of <hide>hidden</hide> text. So we’re going to end this paragraph here and go on to a nice little list:</para>
<para/>
<list type="disc" ordered="0" start="1">
<para indent="36">Item 1</para>
<para indent="36">Item 2</para>
<para indent="36">Item 3</para>
<para indent="36">Item 4</para>
</list>
<para/>
<para>And now comes a fun table:</para>
<para/>
<table>
<row>
<cell>
<para>Cell 1</para>
</cell>
<cell>
<para>Cell 2</para>
<para>More in cell 2</para>
</cell>
<cell>
<para>Cell 3</para>
</cell>
</row>
<row>
<cell>
<para>Next row</para>
</cell>
<cell>
<para>Next row </para>
</cell>
<cell>
<para>Next row</para>
</cell>
</row>
</table>
<para/>
<para>A page break:</para>
<page/>
<para>And here we’re on the next page. </para>
<para>This para has a <ref type="footnote" to="1"><span style="footnote reference"><super>1</super></span></ref>footnote.</para>
<para>And here’s yet another paragraph. </para>
<para/>
<footnote id="1">
<para><font size="10"><span style="footnote reference"><super>1</super></span> This is the actual content of the footnote.</font></para>
</footnote>
</document>
|