rrtf 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -7
  3. data/documentation/RRTF/CharacterFormatting.html +1002 -0
  4. data/documentation/RRTF/CharacterStyle.html +1058 -0
  5. data/documentation/RRTF/Colour.html +813 -0
  6. data/documentation/RRTF/ColourTable.html +770 -0
  7. data/documentation/RRTF/CommandNode.html +2372 -0
  8. data/documentation/RRTF/ContainerNode.html +826 -0
  9. data/documentation/RRTF/Converters/HTML/Helpers.html +272 -0
  10. data/documentation/RRTF/Converters/HTML/Node.html +364 -0
  11. data/documentation/RRTF/Converters/HTML/NodeSet.html +265 -0
  12. data/documentation/RRTF/Converters/HTML.html +337 -0
  13. data/documentation/RRTF/Converters.html +117 -0
  14. data/documentation/RRTF/Document.html +2405 -0
  15. data/documentation/RRTF/DocumentStyle.html +1367 -0
  16. data/documentation/RRTF/Font.html +790 -0
  17. data/documentation/RRTF/FontTable.html +763 -0
  18. data/documentation/RRTF/FooterNode.html +515 -0
  19. data/documentation/RRTF/HeaderNode.html +515 -0
  20. data/documentation/RRTF/ImageNode.html +1374 -0
  21. data/documentation/RRTF/Information.html +809 -0
  22. data/documentation/RRTF/LinkNode.html +264 -0
  23. data/documentation/RRTF/ListLevel.html +799 -0
  24. data/documentation/RRTF/ListLevelNode.html +612 -0
  25. data/documentation/RRTF/ListMarker.html +595 -0
  26. data/documentation/RRTF/ListNode.html +368 -0
  27. data/documentation/RRTF/ListTable.html +343 -0
  28. data/documentation/RRTF/ListTemplate.html +433 -0
  29. data/documentation/RRTF/ListTextNode.html +285 -0
  30. data/documentation/RRTF/Node.html +616 -0
  31. data/documentation/RRTF/Paper.html +624 -0
  32. data/documentation/RRTF/ParagraphFormatting.html +749 -0
  33. data/documentation/RRTF/ParagraphNode.html +275 -0
  34. data/documentation/RRTF/ParagraphStyle.html +1319 -0
  35. data/documentation/RRTF/RTFError.html +295 -0
  36. data/documentation/RRTF/Style.html +1767 -0
  37. data/documentation/RRTF/Stylesheet.html +1768 -0
  38. data/documentation/RRTF/TableCellNode.html +1704 -0
  39. data/documentation/RRTF/TableNode.html +1025 -0
  40. data/documentation/RRTF/TableRowNode.html +675 -0
  41. data/documentation/RRTF/TextNode.html +600 -0
  42. data/documentation/RRTF/Utilities.html +201 -0
  43. data/documentation/RRTF.html +129 -0
  44. data/documentation/_index.html +478 -0
  45. data/documentation/class_list.html +51 -0
  46. data/documentation/css/common.css +1 -0
  47. data/documentation/css/full_list.css +58 -0
  48. data/documentation/css/style.css +492 -0
  49. data/documentation/file.README.html +223 -0
  50. data/documentation/file_list.html +56 -0
  51. data/documentation/frames.html +17 -0
  52. data/documentation/index.html +223 -0
  53. data/documentation/js/app.js +248 -0
  54. data/documentation/js/full_list.js +216 -0
  55. data/documentation/js/jquery.js +4 -0
  56. data/documentation/method_list.html +2203 -0
  57. data/documentation/top-level-namespace.html +110 -0
  58. data/examples/01.rtf +14 -17
  59. data/examples/01_mac_word15_36.png +0 -0
  60. data/examples/01_styles_and_paragraphs.rb +3 -4
  61. data/examples/resources/json/redshirt_styles.json +4 -2
  62. data/lib/rrtf/node.rb +86 -167
  63. data/lib/rrtf/style/character_style.rb +4 -3
  64. data/lib/rrtf/style/formatting.rb +55 -11
  65. data/lib/rrtf/style/paragraph_style.rb +19 -4
  66. data/lib/rrtf/style/style.rb +15 -15
  67. data/lib/rrtf/stylesheet.rb +57 -16
  68. data/lib/rrtf/version.rb +1 -1
  69. data/rrtf.gemspec +1 -0
  70. metadata +70 -1
@@ -0,0 +1,2203 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="utf-8" />
6
+
7
+ <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
8
+
9
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
10
+
11
+
12
+
13
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
+
17
+
18
+ <title>Method List</title>
19
+ <base id="base_target" target="_parent" />
20
+ </head>
21
+ <body>
22
+ <div id="content">
23
+ <div class="fixed_header">
24
+ <h1 id="full_list_header">Method List</h1>
25
+ <div id="full_list_nav">
26
+
27
+ <span><a target="_self" href="class_list.html">
28
+ Classes
29
+ </a></span>
30
+
31
+ <span><a target="_self" href="method_list.html">
32
+ Methods
33
+ </a></span>
34
+
35
+ <span><a target="_self" href="file_list.html">
36
+ Files
37
+ </a></span>
38
+
39
+ </div>
40
+
41
+ <div id="search">Search: <input type="text" /></div>
42
+ </div>
43
+
44
+ <ul id="full_list" class="method">
45
+
46
+
47
+ <li class="odd ">
48
+ <div class="item">
49
+ <span class='object_link'><a href="RRTF/CommandNode.html#<<-instance_method" title="RRTF::CommandNode#&lt;&lt; (method)">#&lt;&lt;</a></span>
50
+ <small>RRTF::CommandNode</small>
51
+ </div>
52
+ </li>
53
+
54
+
55
+ <li class="even ">
56
+ <div class="item">
57
+ <span class='object_link'><a href="RRTF/Font.html#==-instance_method" title="RRTF::Font#== (method)">#==</a></span>
58
+ <small>RRTF::Font</small>
59
+ </div>
60
+ </li>
61
+
62
+
63
+ <li class="odd ">
64
+ <div class="item">
65
+ <span class='object_link'><a href="RRTF/Colour.html#==-instance_method" title="RRTF::Colour#== (method)">#==</a></span>
66
+ <small>RRTF::Colour</small>
67
+ </div>
68
+ </li>
69
+
70
+
71
+ <li class="even ">
72
+ <div class="item">
73
+ <span class='object_link'><a href="RRTF/ColourTable.html#[]-instance_method" title="RRTF::ColourTable#[] (method)">#[]</a></span>
74
+ <small>RRTF::ColourTable</small>
75
+ </div>
76
+ </li>
77
+
78
+
79
+ <li class="odd ">
80
+ <div class="item">
81
+ <span class='object_link'><a href="RRTF/ContainerNode.html#[]-instance_method" title="RRTF::ContainerNode#[] (method)">#[]</a></span>
82
+ <small>RRTF::ContainerNode</small>
83
+ </div>
84
+ </li>
85
+
86
+
87
+ <li class="even ">
88
+ <div class="item">
89
+ <span class='object_link'><a href="RRTF/FontTable.html#[]-instance_method" title="RRTF::FontTable#[] (method)">#[]</a></span>
90
+ <small>RRTF::FontTable</small>
91
+ </div>
92
+ </li>
93
+
94
+
95
+ <li class="odd ">
96
+ <div class="item">
97
+ <span class='object_link'><a href="RRTF/ColourTable.html#add-instance_method" title="RRTF::ColourTable#add (method)">#add</a></span>
98
+ <small>RRTF::ColourTable</small>
99
+ </div>
100
+ </li>
101
+
102
+
103
+ <li class="even ">
104
+ <div class="item">
105
+ <span class='object_link'><a href="RRTF/FontTable.html#add-instance_method" title="RRTF::FontTable#add (method)">#add</a></span>
106
+ <small>RRTF::FontTable</small>
107
+ </div>
108
+ </li>
109
+
110
+
111
+ <li class="odd ">
112
+ <div class="item">
113
+ <span class='object_link'><a href="RRTF/Stylesheet.html#add_style-instance_method" title="RRTF::Stylesheet#add_style (method)">#add_style</a></span>
114
+ <small>RRTF::Stylesheet</small>
115
+ </div>
116
+ </li>
117
+
118
+
119
+ <li class="even ">
120
+ <div class="item">
121
+ <span class='object_link'><a href="RRTF/Stylesheet.html#add_styles-instance_method" title="RRTF::Stylesheet#add_styles (method)">#add_styles</a></span>
122
+ <small>RRTF::Stylesheet</small>
123
+ </div>
124
+ </li>
125
+
126
+
127
+ <li class="odd ">
128
+ <div class="item">
129
+ <span class='object_link'><a href="RRTF/Style.html#additive-instance_method" title="RRTF::Style#additive (method)">#additive</a></span>
130
+ <small>RRTF::Style</small>
131
+ </div>
132
+ </li>
133
+
134
+
135
+ <li class="even ">
136
+ <div class="item">
137
+ <span class='object_link'><a href="RRTF/TextNode.html#append-instance_method" title="RRTF::TextNode#append (method)">#append</a></span>
138
+ <small>RRTF::TextNode</small>
139
+ </div>
140
+ </li>
141
+
142
+
143
+ <li class="odd ">
144
+ <div class="item">
145
+ <span class='object_link'><a href="RRTF/CommandNode.html#apply-instance_method" title="RRTF::CommandNode#apply (method)">#apply</a></span>
146
+ <small>RRTF::CommandNode</small>
147
+ </div>
148
+ </li>
149
+
150
+
151
+ <li class="even ">
152
+ <div class="item">
153
+ <span class='object_link'><a href="RRTF/Information.html#author-instance_method" title="RRTF::Information#author (method)">#author</a></span>
154
+ <small>RRTF::Information</small>
155
+ </div>
156
+ </li>
157
+
158
+
159
+ <li class="odd ">
160
+ <div class="item">
161
+ <span class='object_link'><a href="RRTF/Style.html#auto_update-instance_method" title="RRTF::Style#auto_update (method)">#auto_update</a></span>
162
+ <small>RRTF::Style</small>
163
+ </div>
164
+ </li>
165
+
166
+
167
+ <li class="even ">
168
+ <div class="item">
169
+ <span class='object_link'><a href="RRTF/CommandNode.html#background-instance_method" title="RRTF::CommandNode#background (method)">#background</a></span>
170
+ <small>RRTF::CommandNode</small>
171
+ </div>
172
+ </li>
173
+
174
+
175
+ <li class="odd ">
176
+ <div class="item">
177
+ <span class='object_link'><a href="RRTF/Style.html#based_on_style_handle-instance_method" title="RRTF::Style#based_on_style_handle (method)">#based_on_style_handle</a></span>
178
+ <small>RRTF::Style</small>
179
+ </div>
180
+ </li>
181
+
182
+
183
+ <li class="even ">
184
+ <div class="item">
185
+ <span class='object_link'><a href="RRTF/Colour.html#blue-instance_method" title="RRTF::Colour#blue (method)">#blue</a></span>
186
+ <small>RRTF::Colour</small>
187
+ </div>
188
+ </li>
189
+
190
+
191
+ <li class="odd ">
192
+ <div class="item">
193
+ <span class='object_link'><a href="RRTF/Document.html#body_height-instance_method" title="RRTF::Document#body_height (method)">#body_height</a></span>
194
+ <small>RRTF::Document</small>
195
+ </div>
196
+ </li>
197
+
198
+
199
+ <li class="even ">
200
+ <div class="item">
201
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#body_height-instance_method" title="RRTF::DocumentStyle#body_height (method)">#body_height</a></span>
202
+ <small>RRTF::DocumentStyle</small>
203
+ </div>
204
+ </li>
205
+
206
+
207
+ <li class="odd ">
208
+ <div class="item">
209
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#body_width-instance_method" title="RRTF::DocumentStyle#body_width (method)">#body_width</a></span>
210
+ <small>RRTF::DocumentStyle</small>
211
+ </div>
212
+ </li>
213
+
214
+
215
+ <li class="even ">
216
+ <div class="item">
217
+ <span class='object_link'><a href="RRTF/Document.html#body_width-instance_method" title="RRTF::Document#body_width (method)">#body_width</a></span>
218
+ <small>RRTF::Document</small>
219
+ </div>
220
+ </li>
221
+
222
+
223
+ <li class="odd ">
224
+ <div class="item">
225
+ <span class='object_link'><a href="RRTF/CommandNode.html#bold-instance_method" title="RRTF::CommandNode#bold (method)">#bold</a></span>
226
+ <small>RRTF::CommandNode</small>
227
+ </div>
228
+ </li>
229
+
230
+
231
+ <li class="even ">
232
+ <div class="item">
233
+ <span class='object_link'><a href="RRTF/TableCellNode.html#border_width=-instance_method" title="RRTF::TableCellNode#border_width= (method)">#border_width=</a></span>
234
+ <small>RRTF::TableCellNode</small>
235
+ </div>
236
+ </li>
237
+
238
+
239
+ <li class="odd ">
240
+ <div class="item">
241
+ <span class='object_link'><a href="RRTF/TableRowNode.html#border_width=-instance_method" title="RRTF::TableRowNode#border_width= (method)">#border_width=</a></span>
242
+ <small>RRTF::TableRowNode</small>
243
+ </div>
244
+ </li>
245
+
246
+
247
+ <li class="even ">
248
+ <div class="item">
249
+ <span class='object_link'><a href="RRTF/TableNode.html#border_width=-instance_method" title="RRTF::TableNode#border_width= (method)">#border_width=</a></span>
250
+ <small>RRTF::TableNode</small>
251
+ </div>
252
+ </li>
253
+
254
+
255
+ <li class="odd ">
256
+ <div class="item">
257
+ <span class='object_link'><a href="RRTF/TableCellNode.html#border_widths-instance_method" title="RRTF::TableCellNode#border_widths (method)">#border_widths</a></span>
258
+ <small>RRTF::TableCellNode</small>
259
+ </div>
260
+ </li>
261
+
262
+
263
+ <li class="even ">
264
+ <div class="item">
265
+ <span class='object_link'><a href="RRTF/TableCellNode.html#bottom_border_width-instance_method" title="RRTF::TableCellNode#bottom_border_width (method)">#bottom_border_width</a></span>
266
+ <small>RRTF::TableCellNode</small>
267
+ </div>
268
+ </li>
269
+
270
+
271
+ <li class="odd ">
272
+ <div class="item">
273
+ <span class='object_link'><a href="RRTF/TableCellNode.html#bottom_border_width=-instance_method" title="RRTF::TableCellNode#bottom_border_width= (method)">#bottom_border_width=</a></span>
274
+ <small>RRTF::TableCellNode</small>
275
+ </div>
276
+ </li>
277
+
278
+
279
+ <li class="even ">
280
+ <div class="item">
281
+ <span class='object_link'><a href="RRTF/ImageNode.html#bottom_crop-instance_method" title="RRTF::ImageNode#bottom_crop (method)">#bottom_crop</a></span>
282
+ <small>RRTF::ImageNode</small>
283
+ </div>
284
+ </li>
285
+
286
+
287
+ <li class="odd ">
288
+ <div class="item">
289
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#bottom_margin-instance_method" title="RRTF::DocumentStyle#bottom_margin (method)">#bottom_margin</a></span>
290
+ <small>RRTF::DocumentStyle</small>
291
+ </div>
292
+ </li>
293
+
294
+
295
+ <li class="even ">
296
+ <div class="item">
297
+ <span class='object_link'><a href="RRTF/ListMarker.html#bullet%3F-instance_method" title="RRTF::ListMarker#bullet? (method)">#bullet?</a></span>
298
+ <small>RRTF::ListMarker</small>
299
+ </div>
300
+ </li>
301
+
302
+
303
+ <li class="odd ">
304
+ <div class="item">
305
+ <span class='object_link'><a href="RRTF/TableNode.html#cell_margin-instance_method" title="RRTF::TableNode#cell_margin (method)">#cell_margin</a></span>
306
+ <small>RRTF::TableNode</small>
307
+ </div>
308
+ </li>
309
+
310
+
311
+ <li class="even ">
312
+ <div class="item">
313
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#character_formatting_to_rtf-instance_method" title="RRTF::CharacterFormatting#character_formatting_to_rtf (method)">#character_formatting_to_rtf</a></span>
314
+ <small>RRTF::CharacterFormatting</small>
315
+ </div>
316
+ </li>
317
+
318
+
319
+ <li class="odd ">
320
+ <div class="item">
321
+ <span class='object_link'><a href="RRTF/Document.html#character_set-instance_method" title="RRTF::Document#character_set (method)">#character_set</a></span>
322
+ <small>RRTF::Document</small>
323
+ </div>
324
+ </li>
325
+
326
+
327
+ <li class="even ">
328
+ <div class="item">
329
+ <span class='object_link'><a href="RRTF/ContainerNode.html#children-instance_method" title="RRTF::ContainerNode#children (method)">#children</a></span>
330
+ <small>RRTF::ContainerNode</small>
331
+ </div>
332
+ </li>
333
+
334
+
335
+ <li class="odd ">
336
+ <div class="item">
337
+ <span class='object_link'><a href="RRTF/CommandNode.html#colour-instance_method" title="RRTF::CommandNode#colour (method)">#colour</a></span>
338
+ <small>RRTF::CommandNode</small>
339
+ </div>
340
+ </li>
341
+
342
+
343
+ <li class="even ">
344
+ <div class="item">
345
+ <span class='object_link'><a href="RRTF/Document.html#colours-instance_method" title="RRTF::Document#colours (method)">#colours</a></span>
346
+ <small>RRTF::Document</small>
347
+ </div>
348
+ </li>
349
+
350
+
351
+ <li class="odd ">
352
+ <div class="item">
353
+ <span class='object_link'><a href="RRTF/TableNode.html#column_shading_colour-instance_method" title="RRTF::TableNode#column_shading_colour (method)">#column_shading_colour</a></span>
354
+ <small>RRTF::TableNode</small>
355
+ </div>
356
+ </li>
357
+
358
+
359
+ <li class="even ">
360
+ <div class="item">
361
+ <span class='object_link'><a href="RRTF/TableNode.html#columns-instance_method" title="RRTF::TableNode#columns (method)">#columns</a></span>
362
+ <small>RRTF::TableNode</small>
363
+ </div>
364
+ </li>
365
+
366
+
367
+ <li class="odd ">
368
+ <div class="item">
369
+ <span class='object_link'><a href="RRTF/Information.html#comments-instance_method" title="RRTF::Information#comments (method)">#comments</a></span>
370
+ <small>RRTF::Information</small>
371
+ </div>
372
+ </li>
373
+
374
+
375
+ <li class="even ">
376
+ <div class="item">
377
+ <span class='object_link'><a href="RRTF/Information.html#company-instance_method" title="RRTF::Information#company (method)">#company</a></span>
378
+ <small>RRTF::Information</small>
379
+ </div>
380
+ </li>
381
+
382
+
383
+ <li class="odd ">
384
+ <div class="item">
385
+ <span class='object_link'><a href="RRTF/Utilities.html#constantize-class_method" title="RRTF::Utilities.constantize (method)">constantize</a></span>
386
+ <small>RRTF::Utilities</small>
387
+ </div>
388
+ </li>
389
+
390
+
391
+ <li class="even ">
392
+ <div class="item">
393
+ <span class='object_link'><a href="RRTF/Information.html#created-instance_method" title="RRTF::Information#created (method)">#created</a></span>
394
+ <small>RRTF::Information</small>
395
+ </div>
396
+ </li>
397
+
398
+
399
+ <li class="odd ">
400
+ <div class="item">
401
+ <span class='object_link'><a href="RRTF/Document.html#default_font-instance_method" title="RRTF::Document#default_font (method)">#default_font</a></span>
402
+ <small>RRTF::Document</small>
403
+ </div>
404
+ </li>
405
+
406
+
407
+ <li class="even ">
408
+ <div class="item">
409
+ <span class='object_link'><a href="RRTF/Document.html#default_font=-instance_method" title="RRTF::Document#default_font= (method)">#default_font=</a></span>
410
+ <small>RRTF::Document</small>
411
+ </div>
412
+ </li>
413
+
414
+
415
+ <li class="odd ">
416
+ <div class="item">
417
+ <span class='object_link'><a href="RRTF/ImageNode.html#displayed_height-instance_method" title="RRTF::ImageNode#displayed_height (method)">#displayed_height</a></span>
418
+ <small>RRTF::ImageNode</small>
419
+ </div>
420
+ </li>
421
+
422
+
423
+ <li class="even ">
424
+ <div class="item">
425
+ <span class='object_link'><a href="RRTF/ImageNode.html#displayed_width-instance_method" title="RRTF::ImageNode#displayed_width (method)">#displayed_width</a></span>
426
+ <small>RRTF::ImageNode</small>
427
+ </div>
428
+ </li>
429
+
430
+
431
+ <li class="odd ">
432
+ <div class="item">
433
+ <span class='object_link'><a href="RRTF/Stylesheet.html#document-instance_method" title="RRTF::Stylesheet#document (method)">#document</a></span>
434
+ <small>RRTF::Stylesheet</small>
435
+ </div>
436
+ </li>
437
+
438
+
439
+ <li class="even ">
440
+ <div class="item">
441
+ <span class='object_link'><a href="RRTF/ColourTable.html#each-instance_method" title="RRTF::ColourTable#each (method)">#each</a></span>
442
+ <small>RRTF::ColourTable</small>
443
+ </div>
444
+ </li>
445
+
446
+
447
+ <li class="odd ">
448
+ <div class="item">
449
+ <span class='object_link'><a href="RRTF/FontTable.html#each-instance_method" title="RRTF::FontTable#each (method)">#each</a></span>
450
+ <small>RRTF::FontTable</small>
451
+ </div>
452
+ </li>
453
+
454
+
455
+ <li class="even ">
456
+ <div class="item">
457
+ <span class='object_link'><a href="RRTF/ContainerNode.html#each-instance_method" title="RRTF::ContainerNode#each (method)">#each</a></span>
458
+ <small>RRTF::ContainerNode</small>
459
+ </div>
460
+ </li>
461
+
462
+
463
+ <li class="odd ">
464
+ <div class="item">
465
+ <span class='object_link'><a href="RRTF/Font.html#family-instance_method" title="RRTF::Font#family (method)">#family</a></span>
466
+ <small>RRTF::Font</small>
467
+ </div>
468
+ </li>
469
+
470
+
471
+ <li class="even ">
472
+ <div class="item">
473
+ <span class='object_link'><a href="RRTF/RTFError.html#fire-class_method" title="RRTF::RTFError.fire (method)">fire</a></span>
474
+ <small>RRTF::RTFError</small>
475
+ </div>
476
+ </li>
477
+
478
+
479
+ <li class="odd ">
480
+ <div class="item">
481
+ <span class='object_link'><a href="RRTF/ContainerNode.html#first-instance_method" title="RRTF::ContainerNode#first (method)">#first</a></span>
482
+ <small>RRTF::ContainerNode</small>
483
+ </div>
484
+ </li>
485
+
486
+
487
+ <li class="even ">
488
+ <div class="item">
489
+ <span class='object_link'><a href="RRTF/CommandNode.html#font-instance_method" title="RRTF::CommandNode#font (method)">#font</a></span>
490
+ <small>RRTF::CommandNode</small>
491
+ </div>
492
+ </li>
493
+
494
+
495
+ <li class="odd ">
496
+ <div class="item">
497
+ <span class='object_link'><a href="RRTF/Converters/HTML/Helpers.html#font-instance_method" title="RRTF::Converters::HTML::Helpers#font (method)">#font</a></span>
498
+ <small>RRTF::Converters::HTML::Helpers</small>
499
+ </div>
500
+ </li>
501
+
502
+
503
+ <li class="even ">
504
+ <div class="item">
505
+ <span class='object_link'><a href="RRTF/Document.html#fonts-instance_method" title="RRTF::Document#fonts (method)">#fonts</a></span>
506
+ <small>RRTF::Document</small>
507
+ </div>
508
+ </li>
509
+
510
+
511
+ <li class="odd ">
512
+ <div class="item">
513
+ <span class='object_link'><a href="RRTF/Document.html#footer-instance_method" title="RRTF::Document#footer (method)">#footer</a></span>
514
+ <small>RRTF::Document</small>
515
+ </div>
516
+ </li>
517
+
518
+
519
+ <li class="even ">
520
+ <div class="item">
521
+ <span class='object_link'><a href="RRTF/Document.html#footer=-instance_method" title="RRTF::Document#footer= (method)">#footer=</a></span>
522
+ <small>RRTF::Document</small>
523
+ </div>
524
+ </li>
525
+
526
+
527
+ <li class="odd ">
528
+ <div class="item">
529
+ <span class='object_link'><a href="RRTF/CommandNode.html#footnote-instance_method" title="RRTF::CommandNode#footnote (method)">#footnote</a></span>
530
+ <small>RRTF::CommandNode</small>
531
+ </div>
532
+ </li>
533
+
534
+
535
+ <li class="even ">
536
+ <div class="item">
537
+ <span class='object_link'><a href="RRTF/FooterNode.html#footnote-instance_method" title="RRTF::FooterNode#footnote (method)">#footnote</a></span>
538
+ <small>RRTF::FooterNode</small>
539
+ </div>
540
+ </li>
541
+
542
+
543
+ <li class="odd ">
544
+ <div class="item">
545
+ <span class='object_link'><a href="RRTF/HeaderNode.html#footnote-instance_method" title="RRTF::HeaderNode#footnote (method)">#footnote</a></span>
546
+ <small>RRTF::HeaderNode</small>
547
+ </div>
548
+ </li>
549
+
550
+
551
+ <li class="even ">
552
+ <div class="item">
553
+ <span class='object_link'><a href="RRTF/CommandNode.html#foreground-instance_method" title="RRTF::CommandNode#foreground (method)">#foreground</a></span>
554
+ <small>RRTF::CommandNode</small>
555
+ </div>
556
+ </li>
557
+
558
+
559
+ <li class="odd ">
560
+ <div class="item">
561
+ <span class='object_link'><a href="RRTF/Colour.html#from_string-class_method" title="RRTF::Colour.from_string (method)">from_string</a></span>
562
+ <small>RRTF::Colour</small>
563
+ </div>
564
+ </li>
565
+
566
+
567
+ <li class="even ">
568
+ <div class="item">
569
+ <span class='object_link'><a href="RRTF/Font.html#from_string-class_method" title="RRTF::Font.from_string (method)">from_string</a></span>
570
+ <small>RRTF::Font</small>
571
+ </div>
572
+ </li>
573
+
574
+
575
+ <li class="odd ">
576
+ <div class="item">
577
+ <span class='object_link'><a href="RRTF/Document.html#get_id-instance_method" title="RRTF::Document#get_id (method)">#get_id</a></span>
578
+ <small>RRTF::Document</small>
579
+ </div>
580
+ </li>
581
+
582
+
583
+ <li class="even ">
584
+ <div class="item">
585
+ <span class='object_link'><a href="RRTF/Colour.html#green-instance_method" title="RRTF::Colour#green (method)">#green</a></span>
586
+ <small>RRTF::Colour</small>
587
+ </div>
588
+ </li>
589
+
590
+
591
+ <li class="odd ">
592
+ <div class="item">
593
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#gutter-instance_method" title="RRTF::DocumentStyle#gutter (method)">#gutter</a></span>
594
+ <small>RRTF::DocumentStyle</small>
595
+ </div>
596
+ </li>
597
+
598
+
599
+ <li class="even ">
600
+ <div class="item">
601
+ <span class='object_link'><a href="RRTF/Style.html#handle-instance_method" title="RRTF::Style#handle (method)">#handle</a></span>
602
+ <small>RRTF::Style</small>
603
+ </div>
604
+ </li>
605
+
606
+
607
+ <li class="odd ">
608
+ <div class="item">
609
+ <span class='object_link'><a href="RRTF/Document.html#header-instance_method" title="RRTF::Document#header (method)">#header</a></span>
610
+ <small>RRTF::Document</small>
611
+ </div>
612
+ </li>
613
+
614
+
615
+ <li class="even ">
616
+ <div class="item">
617
+ <span class='object_link'><a href="RRTF/Document.html#header=-instance_method" title="RRTF::Document#header= (method)">#header=</a></span>
618
+ <small>RRTF::Document</small>
619
+ </div>
620
+ </li>
621
+
622
+
623
+ <li class="odd ">
624
+ <div class="item">
625
+ <span class='object_link'><a href="RRTF/ImageNode.html#height-instance_method" title="RRTF::ImageNode#height (method)">#height</a></span>
626
+ <small>RRTF::ImageNode</small>
627
+ </div>
628
+ </li>
629
+
630
+
631
+ <li class="even ">
632
+ <div class="item">
633
+ <span class='object_link'><a href="RRTF/Paper.html#height-instance_method" title="RRTF::Paper#height (method)">#height</a></span>
634
+ <small>RRTF::Paper</small>
635
+ </div>
636
+ </li>
637
+
638
+
639
+ <li class="odd ">
640
+ <div class="item">
641
+ <span class='object_link'><a href="RRTF/Style.html#hidden-instance_method" title="RRTF::Style#hidden (method)">#hidden</a></span>
642
+ <small>RRTF::Style</small>
643
+ </div>
644
+ </li>
645
+
646
+
647
+ <li class="even ">
648
+ <div class="item">
649
+ <span class='object_link'><a href="RRTF/ListTemplate.html#id-instance_method" title="RRTF::ListTemplate#id (method)">#id</a></span>
650
+ <small>RRTF::ListTemplate</small>
651
+ </div>
652
+ </li>
653
+
654
+
655
+ <li class="odd ">
656
+ <div class="item">
657
+ <span class='object_link'><a href="RRTF/ListLevel.html#id-instance_method" title="RRTF::ListLevel#id (method)">#id</a></span>
658
+ <small>RRTF::ListLevel</small>
659
+ </div>
660
+ </li>
661
+
662
+
663
+ <li class="even ">
664
+ <div class="item">
665
+ <span class='object_link'><a href="RRTF/CommandNode.html#image-instance_method" title="RRTF::CommandNode#image (method)">#image</a></span>
666
+ <small>RRTF::CommandNode</small>
667
+ </div>
668
+ </li>
669
+
670
+
671
+ <li class="odd ">
672
+ <div class="item">
673
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#included-class_method" title="RRTF::CharacterFormatting.included (method)">included</a></span>
674
+ <small>RRTF::CharacterFormatting</small>
675
+ </div>
676
+ </li>
677
+
678
+
679
+ <li class="even ">
680
+ <div class="item">
681
+ <span class='object_link'><a href="RRTF/ParagraphFormatting.html#included-class_method" title="RRTF::ParagraphFormatting.included (method)">included</a></span>
682
+ <small>RRTF::ParagraphFormatting</small>
683
+ </div>
684
+ </li>
685
+
686
+
687
+ <li class="odd ">
688
+ <div class="item">
689
+ <span class='object_link'><a href="RRTF/ListLevel.html#indent-instance_method" title="RRTF::ListLevel#indent (method)">#indent</a></span>
690
+ <small>RRTF::ListLevel</small>
691
+ </div>
692
+ </li>
693
+
694
+
695
+ <li class="even ">
696
+ <div class="item">
697
+ <span class='object_link'><a href="RRTF/ColourTable.html#index-instance_method" title="RRTF::ColourTable#index (method)">#index</a></span>
698
+ <small>RRTF::ColourTable</small>
699
+ </div>
700
+ </li>
701
+
702
+
703
+ <li class="odd ">
704
+ <div class="item">
705
+ <span class='object_link'><a href="RRTF/FontTable.html#index-instance_method" title="RRTF::FontTable#index (method)">#index</a></span>
706
+ <small>RRTF::FontTable</small>
707
+ </div>
708
+ </li>
709
+
710
+
711
+ <li class="even ">
712
+ <div class="item">
713
+ <span class='object_link'><a href="RRTF/Document.html#information-instance_method" title="RRTF::Document#information (method)">#information</a></span>
714
+ <small>RRTF::Document</small>
715
+ </div>
716
+ </li>
717
+
718
+
719
+ <li class="odd ">
720
+ <div class="item">
721
+ <span class='object_link'><a href="RRTF/TextNode.html#initialize-instance_method" title="RRTF::TextNode#initialize (method)">#initialize</a></span>
722
+ <small>RRTF::TextNode</small>
723
+ </div>
724
+ </li>
725
+
726
+
727
+ <li class="even ">
728
+ <div class="item">
729
+ <span class='object_link'><a href="RRTF/Font.html#initialize-instance_method" title="RRTF::Font#initialize (method)">#initialize</a></span>
730
+ <small>RRTF::Font</small>
731
+ </div>
732
+ </li>
733
+
734
+
735
+ <li class="odd ">
736
+ <div class="item">
737
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#initialize-instance_method" title="RRTF::ParagraphStyle#initialize (method)">#initialize</a></span>
738
+ <small>RRTF::ParagraphStyle</small>
739
+ </div>
740
+ </li>
741
+
742
+
743
+ <li class="even ">
744
+ <div class="item">
745
+ <span class='object_link'><a href="RRTF/FontTable.html#initialize-instance_method" title="RRTF::FontTable#initialize (method)">#initialize</a></span>
746
+ <small>RRTF::FontTable</small>
747
+ </div>
748
+ </li>
749
+
750
+
751
+ <li class="odd ">
752
+ <div class="item">
753
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#initialize-instance_method" title="RRTF::CharacterStyle#initialize (method)">#initialize</a></span>
754
+ <small>RRTF::CharacterStyle</small>
755
+ </div>
756
+ </li>
757
+
758
+
759
+ <li class="even ">
760
+ <div class="item">
761
+ <span class='object_link'><a href="RRTF/ListTable.html#initialize-instance_method" title="RRTF::ListTable#initialize (method)">#initialize</a></span>
762
+ <small>RRTF::ListTable</small>
763
+ </div>
764
+ </li>
765
+
766
+
767
+ <li class="odd ">
768
+ <div class="item">
769
+ <span class='object_link'><a href="RRTF/ListMarker.html#initialize-instance_method" title="RRTF::ListMarker#initialize (method)">#initialize</a></span>
770
+ <small>RRTF::ListMarker</small>
771
+ </div>
772
+ </li>
773
+
774
+
775
+ <li class="even ">
776
+ <div class="item">
777
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#initialize-instance_method" title="RRTF::DocumentStyle#initialize (method)">#initialize</a></span>
778
+ <small>RRTF::DocumentStyle</small>
779
+ </div>
780
+ </li>
781
+
782
+
783
+ <li class="odd ">
784
+ <div class="item">
785
+ <span class='object_link'><a href="RRTF/ListTemplate.html#initialize-instance_method" title="RRTF::ListTemplate#initialize (method)">#initialize</a></span>
786
+ <small>RRTF::ListTemplate</small>
787
+ </div>
788
+ </li>
789
+
790
+
791
+ <li class="even ">
792
+ <div class="item">
793
+ <span class='object_link'><a href="RRTF/Document.html#initialize-instance_method" title="RRTF::Document#initialize (method)">#initialize</a></span>
794
+ <small>RRTF::Document</small>
795
+ </div>
796
+ </li>
797
+
798
+
799
+ <li class="odd ">
800
+ <div class="item">
801
+ <span class='object_link'><a href="RRTF/ListLevel.html#initialize-instance_method" title="RRTF::ListLevel#initialize (method)">#initialize</a></span>
802
+ <small>RRTF::ListLevel</small>
803
+ </div>
804
+ </li>
805
+
806
+
807
+ <li class="even ">
808
+ <div class="item">
809
+ <span class='object_link'><a href="RRTF/Node.html#initialize-instance_method" title="RRTF::Node#initialize (method)">#initialize</a></span>
810
+ <small>RRTF::Node</small>
811
+ </div>
812
+ </li>
813
+
814
+
815
+ <li class="odd ">
816
+ <div class="item">
817
+ <span class='object_link'><a href="RRTF/ContainerNode.html#initialize-instance_method" title="RRTF::ContainerNode#initialize (method)">#initialize</a></span>
818
+ <small>RRTF::ContainerNode</small>
819
+ </div>
820
+ </li>
821
+
822
+
823
+ <li class="even ">
824
+ <div class="item">
825
+ <span class='object_link'><a href="RRTF/Paper.html#initialize-instance_method" title="RRTF::Paper#initialize (method)">#initialize</a></span>
826
+ <small>RRTF::Paper</small>
827
+ </div>
828
+ </li>
829
+
830
+
831
+ <li class="odd ">
832
+ <div class="item">
833
+ <span class='object_link'><a href="RRTF/Converters/HTML/Node.html#initialize-instance_method" title="RRTF::Converters::HTML::Node#initialize (method)">#initialize</a></span>
834
+ <small>RRTF::Converters::HTML::Node</small>
835
+ </div>
836
+ </li>
837
+
838
+
839
+ <li class="even ">
840
+ <div class="item">
841
+ <span class='object_link'><a href="RRTF/Converters/HTML/NodeSet.html#initialize-instance_method" title="RRTF::Converters::HTML::NodeSet#initialize (method)">#initialize</a></span>
842
+ <small>RRTF::Converters::HTML::NodeSet</small>
843
+ </div>
844
+ </li>
845
+
846
+
847
+ <li class="odd ">
848
+ <div class="item">
849
+ <span class='object_link'><a href="RRTF/Converters/HTML.html#initialize-instance_method" title="RRTF::Converters::HTML#initialize (method)">#initialize</a></span>
850
+ <small>RRTF::Converters::HTML</small>
851
+ </div>
852
+ </li>
853
+
854
+
855
+ <li class="even ">
856
+ <div class="item">
857
+ <span class='object_link'><a href="RRTF/RTFError.html#initialize-instance_method" title="RRTF::RTFError#initialize (method)">#initialize</a></span>
858
+ <small>RRTF::RTFError</small>
859
+ </div>
860
+ </li>
861
+
862
+
863
+ <li class="odd ">
864
+ <div class="item">
865
+ <span class='object_link'><a href="RRTF/CommandNode.html#initialize-instance_method" title="RRTF::CommandNode#initialize (method)">#initialize</a></span>
866
+ <small>RRTF::CommandNode</small>
867
+ </div>
868
+ </li>
869
+
870
+
871
+ <li class="even ">
872
+ <div class="item">
873
+ <span class='object_link'><a href="RRTF/ImageNode.html#initialize-instance_method" title="RRTF::ImageNode#initialize (method)">#initialize</a></span>
874
+ <small>RRTF::ImageNode</small>
875
+ </div>
876
+ </li>
877
+
878
+
879
+ <li class="odd ">
880
+ <div class="item">
881
+ <span class='object_link'><a href="RRTF/Style.html#initialize-instance_method" title="RRTF::Style#initialize (method)">#initialize</a></span>
882
+ <small>RRTF::Style</small>
883
+ </div>
884
+ </li>
885
+
886
+
887
+ <li class="even ">
888
+ <div class="item">
889
+ <span class='object_link'><a href="RRTF/ParagraphNode.html#initialize-instance_method" title="RRTF::ParagraphNode#initialize (method)">#initialize</a></span>
890
+ <small>RRTF::ParagraphNode</small>
891
+ </div>
892
+ </li>
893
+
894
+
895
+ <li class="odd ">
896
+ <div class="item">
897
+ <span class='object_link'><a href="RRTF/ListNode.html#initialize-instance_method" title="RRTF::ListNode#initialize (method)">#initialize</a></span>
898
+ <small>RRTF::ListNode</small>
899
+ </div>
900
+ </li>
901
+
902
+
903
+ <li class="even ">
904
+ <div class="item">
905
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#initialize-instance_method" title="RRTF::ListLevelNode#initialize (method)">#initialize</a></span>
906
+ <small>RRTF::ListLevelNode</small>
907
+ </div>
908
+ </li>
909
+
910
+
911
+ <li class="odd ">
912
+ <div class="item">
913
+ <span class='object_link'><a href="RRTF/Colour.html#initialize-instance_method" title="RRTF::Colour#initialize (method)">#initialize</a></span>
914
+ <small>RRTF::Colour</small>
915
+ </div>
916
+ </li>
917
+
918
+
919
+ <li class="even ">
920
+ <div class="item">
921
+ <span class='object_link'><a href="RRTF/ListTextNode.html#initialize-instance_method" title="RRTF::ListTextNode#initialize (method)">#initialize</a></span>
922
+ <small>RRTF::ListTextNode</small>
923
+ </div>
924
+ </li>
925
+
926
+
927
+ <li class="odd ">
928
+ <div class="item">
929
+ <span class='object_link'><a href="RRTF/LinkNode.html#initialize-instance_method" title="RRTF::LinkNode#initialize (method)">#initialize</a></span>
930
+ <small>RRTF::LinkNode</small>
931
+ </div>
932
+ </li>
933
+
934
+
935
+ <li class="even ">
936
+ <div class="item">
937
+ <span class='object_link'><a href="RRTF/TableNode.html#initialize-instance_method" title="RRTF::TableNode#initialize (method)">#initialize</a></span>
938
+ <small>RRTF::TableNode</small>
939
+ </div>
940
+ </li>
941
+
942
+
943
+ <li class="odd ">
944
+ <div class="item">
945
+ <span class='object_link'><a href="RRTF/FooterNode.html#initialize-instance_method" title="RRTF::FooterNode#initialize (method)">#initialize</a></span>
946
+ <small>RRTF::FooterNode</small>
947
+ </div>
948
+ </li>
949
+
950
+
951
+ <li class="even ">
952
+ <div class="item">
953
+ <span class='object_link'><a href="RRTF/Information.html#initialize-instance_method" title="RRTF::Information#initialize (method)">#initialize</a></span>
954
+ <small>RRTF::Information</small>
955
+ </div>
956
+ </li>
957
+
958
+
959
+ <li class="odd ">
960
+ <div class="item">
961
+ <span class='object_link'><a href="RRTF/TableRowNode.html#initialize-instance_method" title="RRTF::TableRowNode#initialize (method)">#initialize</a></span>
962
+ <small>RRTF::TableRowNode</small>
963
+ </div>
964
+ </li>
965
+
966
+
967
+ <li class="even ">
968
+ <div class="item">
969
+ <span class='object_link'><a href="RRTF/ColourTable.html#initialize-instance_method" title="RRTF::ColourTable#initialize (method)">#initialize</a></span>
970
+ <small>RRTF::ColourTable</small>
971
+ </div>
972
+ </li>
973
+
974
+
975
+ <li class="odd ">
976
+ <div class="item">
977
+ <span class='object_link'><a href="RRTF/TableCellNode.html#initialize-instance_method" title="RRTF::TableCellNode#initialize (method)">#initialize</a></span>
978
+ <small>RRTF::TableCellNode</small>
979
+ </div>
980
+ </li>
981
+
982
+
983
+ <li class="even ">
984
+ <div class="item">
985
+ <span class='object_link'><a href="RRTF/Stylesheet.html#initialize-instance_method" title="RRTF::Stylesheet#initialize (method)">#initialize</a></span>
986
+ <small>RRTF::Stylesheet</small>
987
+ </div>
988
+ </li>
989
+
990
+
991
+ <li class="odd ">
992
+ <div class="item">
993
+ <span class='object_link'><a href="RRTF/HeaderNode.html#initialize-instance_method" title="RRTF::HeaderNode#initialize (method)">#initialize</a></span>
994
+ <small>RRTF::HeaderNode</small>
995
+ </div>
996
+ </li>
997
+
998
+
999
+ <li class="even ">
1000
+ <div class="item">
1001
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#initialize_character_formatting-instance_method" title="RRTF::CharacterFormatting#initialize_character_formatting (method)">#initialize_character_formatting</a></span>
1002
+ <small>RRTF::CharacterFormatting</small>
1003
+ </div>
1004
+ </li>
1005
+
1006
+
1007
+ <li class="odd ">
1008
+ <div class="item">
1009
+ <span class='object_link'><a href="RRTF/ParagraphFormatting.html#initialize_paragraph_formatting-instance_method" title="RRTF::ParagraphFormatting#initialize_paragraph_formatting (method)">#initialize_paragraph_formatting</a></span>
1010
+ <small>RRTF::ParagraphFormatting</small>
1011
+ </div>
1012
+ </li>
1013
+
1014
+
1015
+ <li class="even ">
1016
+ <div class="item">
1017
+ <span class='object_link'><a href="RRTF/TextNode.html#insert-instance_method" title="RRTF::TextNode#insert (method)">#insert</a></span>
1018
+ <small>RRTF::TextNode</small>
1019
+ </div>
1020
+ </li>
1021
+
1022
+
1023
+ <li class="odd ">
1024
+ <div class="item">
1025
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#is_character_style%3F-instance_method" title="RRTF::CharacterStyle#is_character_style? (method)">#is_character_style?</a></span>
1026
+ <small>RRTF::CharacterStyle</small>
1027
+ </div>
1028
+ </li>
1029
+
1030
+
1031
+ <li class="even ">
1032
+ <div class="item">
1033
+ <span class='object_link'><a href="RRTF/Style.html#is_character_style%3F-instance_method" title="RRTF::Style#is_character_style? (method)">#is_character_style?</a></span>
1034
+ <small>RRTF::Style</small>
1035
+ </div>
1036
+ </li>
1037
+
1038
+
1039
+ <li class="odd ">
1040
+ <div class="item">
1041
+ <span class='object_link'><a href="RRTF/Style.html#is_document_style%3F-instance_method" title="RRTF::Style#is_document_style? (method)">#is_document_style?</a></span>
1042
+ <small>RRTF::Style</small>
1043
+ </div>
1044
+ </li>
1045
+
1046
+
1047
+ <li class="even ">
1048
+ <div class="item">
1049
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#is_document_style%3F-instance_method" title="RRTF::DocumentStyle#is_document_style? (method)">#is_document_style?</a></span>
1050
+ <small>RRTF::DocumentStyle</small>
1051
+ </div>
1052
+ </li>
1053
+
1054
+
1055
+ <li class="odd ">
1056
+ <div class="item">
1057
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#is_paragraph_style%3F-instance_method" title="RRTF::ParagraphStyle#is_paragraph_style? (method)">#is_paragraph_style?</a></span>
1058
+ <small>RRTF::ParagraphStyle</small>
1059
+ </div>
1060
+ </li>
1061
+
1062
+
1063
+ <li class="even ">
1064
+ <div class="item">
1065
+ <span class='object_link'><a href="RRTF/Style.html#is_paragraph_style%3F-instance_method" title="RRTF::Style#is_paragraph_style? (method)">#is_paragraph_style?</a></span>
1066
+ <small>RRTF::Style</small>
1067
+ </div>
1068
+ </li>
1069
+
1070
+
1071
+ <li class="odd ">
1072
+ <div class="item">
1073
+ <span class='object_link'><a href="RRTF/Node.html#is_root%3F-instance_method" title="RRTF::Node#is_root? (method)">#is_root?</a></span>
1074
+ <small>RRTF::Node</small>
1075
+ </div>
1076
+ </li>
1077
+
1078
+
1079
+ <li class="even ">
1080
+ <div class="item">
1081
+ <span class='object_link'><a href="RRTF/Style.html#is_table_style%3F-instance_method" title="RRTF::Style#is_table_style? (method)">#is_table_style?</a></span>
1082
+ <small>RRTF::Style</small>
1083
+ </div>
1084
+ </li>
1085
+
1086
+
1087
+ <li class="odd ">
1088
+ <div class="item">
1089
+ <span class='object_link'><a href="RRTF/CommandNode.html#italic-instance_method" title="RRTF::CommandNode#italic (method)">#italic</a></span>
1090
+ <small>RRTF::CommandNode</small>
1091
+ </div>
1092
+ </li>
1093
+
1094
+
1095
+ <li class="even ">
1096
+ <div class="item">
1097
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#item-instance_method" title="RRTF::ListLevelNode#item (method)">#item</a></span>
1098
+ <small>RRTF::ListLevelNode</small>
1099
+ </div>
1100
+ </li>
1101
+
1102
+
1103
+ <li class="odd ">
1104
+ <div class="item">
1105
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#kind-instance_method" title="RRTF::ListLevelNode#kind (method)">#kind</a></span>
1106
+ <small>RRTF::ListLevelNode</small>
1107
+ </div>
1108
+ </li>
1109
+
1110
+
1111
+ <li class="even ">
1112
+ <div class="item">
1113
+ <span class='object_link'><a href="RRTF/Document.html#language-instance_method" title="RRTF::Document#language (method)">#language</a></span>
1114
+ <small>RRTF::Document</small>
1115
+ </div>
1116
+ </li>
1117
+
1118
+
1119
+ <li class="odd ">
1120
+ <div class="item">
1121
+ <span class='object_link'><a href="RRTF/ContainerNode.html#last-instance_method" title="RRTF::ContainerNode#last (method)">#last</a></span>
1122
+ <small>RRTF::ContainerNode</small>
1123
+ </div>
1124
+ </li>
1125
+
1126
+
1127
+ <li class="even ">
1128
+ <div class="item">
1129
+ <span class='object_link'><a href="RRTF/TableCellNode.html#left_border_width-instance_method" title="RRTF::TableCellNode#left_border_width (method)">#left_border_width</a></span>
1130
+ <small>RRTF::TableCellNode</small>
1131
+ </div>
1132
+ </li>
1133
+
1134
+
1135
+ <li class="odd ">
1136
+ <div class="item">
1137
+ <span class='object_link'><a href="RRTF/TableCellNode.html#left_border_width=-instance_method" title="RRTF::TableCellNode#left_border_width= (method)">#left_border_width=</a></span>
1138
+ <small>RRTF::TableCellNode</small>
1139
+ </div>
1140
+ </li>
1141
+
1142
+
1143
+ <li class="even ">
1144
+ <div class="item">
1145
+ <span class='object_link'><a href="RRTF/ImageNode.html#left_crop-instance_method" title="RRTF::ImageNode#left_crop (method)">#left_crop</a></span>
1146
+ <small>RRTF::ImageNode</small>
1147
+ </div>
1148
+ </li>
1149
+
1150
+
1151
+ <li class="odd ">
1152
+ <div class="item">
1153
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#left_margin-instance_method" title="RRTF::DocumentStyle#left_margin (method)">#left_margin</a></span>
1154
+ <small>RRTF::DocumentStyle</small>
1155
+ </div>
1156
+ </li>
1157
+
1158
+
1159
+ <li class="even ">
1160
+ <div class="item">
1161
+ <span class='object_link'><a href="RRTF/TableRowNode.html#length-instance_method" title="RRTF::TableRowNode#length (method)">#length</a></span>
1162
+ <small>RRTF::TableRowNode</small>
1163
+ </div>
1164
+ </li>
1165
+
1166
+
1167
+ <li class="odd ">
1168
+ <div class="item">
1169
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#level-instance_method" title="RRTF::ListLevelNode#level (method)">#level</a></span>
1170
+ <small>RRTF::ListLevelNode</small>
1171
+ </div>
1172
+ </li>
1173
+
1174
+
1175
+ <li class="even ">
1176
+ <div class="item">
1177
+ <span class='object_link'><a href="RRTF/ListLevel.html#level-instance_method" title="RRTF::ListLevel#level (method)">#level</a></span>
1178
+ <small>RRTF::ListLevel</small>
1179
+ </div>
1180
+ </li>
1181
+
1182
+
1183
+ <li class="odd ">
1184
+ <div class="item">
1185
+ <span class='object_link'><a href="RRTF/ListTemplate.html#level_for-instance_method" title="RRTF::ListTemplate#level_for (method)">#level_for</a></span>
1186
+ <small>RRTF::ListTemplate</small>
1187
+ </div>
1188
+ </li>
1189
+
1190
+
1191
+ <li class="even ">
1192
+ <div class="item">
1193
+ <span class='object_link'><a href="RRTF/CommandNode.html#line_break-instance_method" title="RRTF::CommandNode#line_break (method)">#line_break</a></span>
1194
+ <small>RRTF::CommandNode</small>
1195
+ </div>
1196
+ </li>
1197
+
1198
+
1199
+ <li class="odd ">
1200
+ <div class="item">
1201
+ <span class='object_link'><a href="RRTF/CommandNode.html#link-instance_method" title="RRTF::CommandNode#link (method)">#link</a></span>
1202
+ <small>RRTF::CommandNode</small>
1203
+ </div>
1204
+ </li>
1205
+
1206
+
1207
+ <li class="even ">
1208
+ <div class="item">
1209
+ <span class='object_link'><a href="RRTF/ListNode.html#list-instance_method" title="RRTF::ListNode#list (method)">#list</a></span>
1210
+ <small>RRTF::ListNode</small>
1211
+ </div>
1212
+ </li>
1213
+
1214
+
1215
+ <li class="odd ">
1216
+ <div class="item">
1217
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#list-instance_method" title="RRTF::ListLevelNode#list (method)">#list</a></span>
1218
+ <small>RRTF::ListLevelNode</small>
1219
+ </div>
1220
+ </li>
1221
+
1222
+
1223
+ <li class="even ">
1224
+ <div class="item">
1225
+ <span class='object_link'><a href="RRTF/CommandNode.html#list-instance_method" title="RRTF::CommandNode#list (method)">#list</a></span>
1226
+ <small>RRTF::CommandNode</small>
1227
+ </div>
1228
+ </li>
1229
+
1230
+
1231
+ <li class="odd ">
1232
+ <div class="item">
1233
+ <span class='object_link'><a href="RRTF/Document.html#lists-instance_method" title="RRTF::Document#lists (method)">#lists</a></span>
1234
+ <small>RRTF::Document</small>
1235
+ </div>
1236
+ </li>
1237
+
1238
+
1239
+ <li class="even ">
1240
+ <div class="item">
1241
+ <span class='object_link'><a href="RRTF/Document.html#load_stylesheet-instance_method" title="RRTF::Document#load_stylesheet (method)">#load_stylesheet</a></span>
1242
+ <small>RRTF::Document</small>
1243
+ </div>
1244
+ </li>
1245
+
1246
+
1247
+ <li class="odd ">
1248
+ <div class="item">
1249
+ <span class='object_link'><a href="RRTF/ListLevel.html#marker-instance_method" title="RRTF::ListLevel#marker (method)">#marker</a></span>
1250
+ <small>RRTF::ListLevel</small>
1251
+ </div>
1252
+ </li>
1253
+
1254
+
1255
+ <li class="even ">
1256
+ <div class="item">
1257
+ <span class='object_link'><a href="RRTF/ListMarker.html#name-instance_method" title="RRTF::ListMarker#name (method)">#name</a></span>
1258
+ <small>RRTF::ListMarker</small>
1259
+ </div>
1260
+ </li>
1261
+
1262
+
1263
+ <li class="odd ">
1264
+ <div class="item">
1265
+ <span class='object_link'><a href="RRTF/Style.html#name-instance_method" title="RRTF::Style#name (method)">#name</a></span>
1266
+ <small>RRTF::Style</small>
1267
+ </div>
1268
+ </li>
1269
+
1270
+
1271
+ <li class="even ">
1272
+ <div class="item">
1273
+ <span class='object_link'><a href="RRTF/Font.html#name-instance_method" title="RRTF::Font#name (method)">#name</a></span>
1274
+ <small>RRTF::Font</small>
1275
+ </div>
1276
+ </li>
1277
+
1278
+
1279
+ <li class="odd ">
1280
+ <div class="item">
1281
+ <span class='object_link'><a href="RRTF/Paper.html#name-instance_method" title="RRTF::Paper#name (method)">#name</a></span>
1282
+ <small>RRTF::Paper</small>
1283
+ </div>
1284
+ </li>
1285
+
1286
+
1287
+ <li class="even ">
1288
+ <div class="item">
1289
+ <span class='object_link'><a href="RRTF/ListTable.html#new_template-instance_method" title="RRTF::ListTable#new_template (method)">#new_template</a></span>
1290
+ <small>RRTF::ListTable</small>
1291
+ </div>
1292
+ </li>
1293
+
1294
+
1295
+ <li class="odd ">
1296
+ <div class="item">
1297
+ <span class='object_link'><a href="RRTF/Node.html#next_node-instance_method" title="RRTF::Node#next_node (method)">#next_node</a></span>
1298
+ <small>RRTF::Node</small>
1299
+ </div>
1300
+ </li>
1301
+
1302
+
1303
+ <li class="even ">
1304
+ <div class="item">
1305
+ <span class='object_link'><a href="RRTF/Style.html#next_style_handle-instance_method" title="RRTF::Style#next_style_handle (method)">#next_style_handle</a></span>
1306
+ <small>RRTF::Style</small>
1307
+ </div>
1308
+ </li>
1309
+
1310
+
1311
+ <li class="odd ">
1312
+ <div class="item">
1313
+ <span class='object_link'><a href="RRTF/ListMarker.html#number_type-instance_method" title="RRTF::ListMarker#number_type (method)">#number_type</a></span>
1314
+ <small>RRTF::ListMarker</small>
1315
+ </div>
1316
+ </li>
1317
+
1318
+
1319
+ <li class="even ">
1320
+ <div class="item">
1321
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#orientation-instance_method" title="RRTF::DocumentStyle#orientation (method)">#orientation</a></span>
1322
+ <small>RRTF::DocumentStyle</small>
1323
+ </div>
1324
+ </li>
1325
+
1326
+
1327
+ <li class="odd ">
1328
+ <div class="item">
1329
+ <span class='object_link'><a href="RRTF/Document.html#page_break-instance_method" title="RRTF::Document#page_break (method)">#page_break</a></span>
1330
+ <small>RRTF::Document</small>
1331
+ </div>
1332
+ </li>
1333
+
1334
+
1335
+ <li class="even ">
1336
+ <div class="item">
1337
+ <span class='object_link'><a href="RRTF/Document.html#paper-instance_method" title="RRTF::Document#paper (method)">#paper</a></span>
1338
+ <small>RRTF::Document</small>
1339
+ </div>
1340
+ </li>
1341
+
1342
+
1343
+ <li class="odd ">
1344
+ <div class="item">
1345
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#paper-instance_method" title="RRTF::DocumentStyle#paper (method)">#paper</a></span>
1346
+ <small>RRTF::DocumentStyle</small>
1347
+ </div>
1348
+ </li>
1349
+
1350
+
1351
+ <li class="even ">
1352
+ <div class="item">
1353
+ <span class='object_link'><a href="RRTF/CommandNode.html#paragraph-instance_method" title="RRTF::CommandNode#paragraph (method)">#paragraph</a></span>
1354
+ <small>RRTF::CommandNode</small>
1355
+ </div>
1356
+ </li>
1357
+
1358
+
1359
+ <li class="odd ">
1360
+ <div class="item">
1361
+ <span class='object_link'><a href="RRTF/TableCellNode.html#paragraph-instance_method" title="RRTF::TableCellNode#paragraph (method)">#paragraph</a></span>
1362
+ <small>RRTF::TableCellNode</small>
1363
+ </div>
1364
+ </li>
1365
+
1366
+
1367
+ <li class="even ">
1368
+ <div class="item">
1369
+ <span class='object_link'><a href="RRTF/ParagraphFormatting.html#paragraph_formatting_to_rtf-instance_method" title="RRTF::ParagraphFormatting#paragraph_formatting_to_rtf (method)">#paragraph_formatting_to_rtf</a></span>
1370
+ <small>RRTF::ParagraphFormatting</small>
1371
+ </div>
1372
+ </li>
1373
+
1374
+
1375
+ <li class="odd ">
1376
+ <div class="item">
1377
+ <span class='object_link'><a href="RRTF/Node.html#parent-instance_method" title="RRTF::Node#parent (method)">#parent</a></span>
1378
+ <small>RRTF::Node</small>
1379
+ </div>
1380
+ </li>
1381
+
1382
+
1383
+ <li class="even ">
1384
+ <div class="item">
1385
+ <span class='object_link'><a href="RRTF/Document.html#parent=-instance_method" title="RRTF::Document#parent= (method)">#parent=</a></span>
1386
+ <small>RRTF::Document</small>
1387
+ </div>
1388
+ </li>
1389
+
1390
+
1391
+ <li class="odd ">
1392
+ <div class="item">
1393
+ <span class='object_link'><a href="RRTF/TableRowNode.html#parent=-instance_method" title="RRTF::TableRowNode#parent= (method)">#parent=</a></span>
1394
+ <small>RRTF::TableRowNode</small>
1395
+ </div>
1396
+ </li>
1397
+
1398
+
1399
+ <li class="even ">
1400
+ <div class="item">
1401
+ <span class='object_link'><a href="RRTF/TableCellNode.html#parent=-instance_method" title="RRTF::TableCellNode#parent= (method)">#parent=</a></span>
1402
+ <small>RRTF::TableCellNode</small>
1403
+ </div>
1404
+ </li>
1405
+
1406
+
1407
+ <li class="odd ">
1408
+ <div class="item">
1409
+ <span class='object_link'><a href="RRTF/Style.html#prefix-instance_method" title="RRTF::Style#prefix (method)">#prefix</a></span>
1410
+ <small>RRTF::Style</small>
1411
+ </div>
1412
+ </li>
1413
+
1414
+
1415
+ <li class="even ">
1416
+ <div class="item">
1417
+ <span class='object_link'><a href="RRTF/CommandNode.html#prefix-instance_method" title="RRTF::CommandNode#prefix (method)">#prefix</a></span>
1418
+ <small>RRTF::CommandNode</small>
1419
+ </div>
1420
+ </li>
1421
+
1422
+
1423
+ <li class="odd ">
1424
+ <div class="item">
1425
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#prefix-instance_method" title="RRTF::CharacterStyle#prefix (method)">#prefix</a></span>
1426
+ <small>RRTF::CharacterStyle</small>
1427
+ </div>
1428
+ </li>
1429
+
1430
+
1431
+ <li class="even ">
1432
+ <div class="item">
1433
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#prefix-instance_method" title="RRTF::ParagraphStyle#prefix (method)">#prefix</a></span>
1434
+ <small>RRTF::ParagraphStyle</small>
1435
+ </div>
1436
+ </li>
1437
+
1438
+
1439
+ <li class="odd ">
1440
+ <div class="item">
1441
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#prefix-instance_method" title="RRTF::DocumentStyle#prefix (method)">#prefix</a></span>
1442
+ <small>RRTF::DocumentStyle</small>
1443
+ </div>
1444
+ </li>
1445
+
1446
+
1447
+ <li class="even ">
1448
+ <div class="item">
1449
+ <span class='object_link'><a href="RRTF/Node.html#previous_node-instance_method" title="RRTF::Node#previous_node (method)">#previous_node</a></span>
1450
+ <small>RRTF::Node</small>
1451
+ </div>
1452
+ </li>
1453
+
1454
+
1455
+ <li class="odd ">
1456
+ <div class="item">
1457
+ <span class='object_link'><a href="RRTF/Style.html#primary-instance_method" title="RRTF::Style#primary (method)">#primary</a></span>
1458
+ <small>RRTF::Style</small>
1459
+ </div>
1460
+ </li>
1461
+
1462
+
1463
+ <li class="even ">
1464
+ <div class="item">
1465
+ <span class='object_link'><a href="RRTF/Style.html#priority-instance_method" title="RRTF::Style#priority (method)">#priority</a></span>
1466
+ <small>RRTF::Style</small>
1467
+ </div>
1468
+ </li>
1469
+
1470
+
1471
+ <li class="odd ">
1472
+ <div class="item">
1473
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#push_colours-instance_method" title="RRTF::CharacterFormatting#push_colours (method)">#push_colours</a></span>
1474
+ <small>RRTF::CharacterFormatting</small>
1475
+ </div>
1476
+ </li>
1477
+
1478
+
1479
+ <li class="even ">
1480
+ <div class="item">
1481
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#push_fonts-instance_method" title="RRTF::CharacterFormatting#push_fonts (method)">#push_fonts</a></span>
1482
+ <small>RRTF::CharacterFormatting</small>
1483
+ </div>
1484
+ </li>
1485
+
1486
+
1487
+ <li class="odd ">
1488
+ <div class="item">
1489
+ <span class='object_link'><a href="RRTF/ImageNode.html#read_source-instance_method" title="RRTF::ImageNode#read_source (method)">#read_source</a></span>
1490
+ <small>RRTF::ImageNode</small>
1491
+ </div>
1492
+ </li>
1493
+
1494
+
1495
+ <li class="even ">
1496
+ <div class="item">
1497
+ <span class='object_link'><a href="RRTF/Converters/HTML/Node.html#recurse-instance_method" title="RRTF::Converters::HTML::Node#recurse (method)">#recurse</a></span>
1498
+ <small>RRTF::Converters::HTML::Node</small>
1499
+ </div>
1500
+ </li>
1501
+
1502
+
1503
+ <li class="odd ">
1504
+ <div class="item">
1505
+ <span class='object_link'><a href="RRTF/Colour.html#red-instance_method" title="RRTF::Colour#red (method)">#red</a></span>
1506
+ <small>RRTF::Colour</small>
1507
+ </div>
1508
+ </li>
1509
+
1510
+
1511
+ <li class="even ">
1512
+ <div class="item">
1513
+ <span class='object_link'><a href="RRTF/ListLevel.html#reset_tabs-instance_method" title="RRTF::ListLevel#reset_tabs (method)">#reset_tabs</a></span>
1514
+ <small>RRTF::ListLevel</small>
1515
+ </div>
1516
+ </li>
1517
+
1518
+
1519
+ <li class="odd ">
1520
+ <div class="item">
1521
+ <span class='object_link'><a href="RRTF/TableCellNode.html#right_border_width-instance_method" title="RRTF::TableCellNode#right_border_width (method)">#right_border_width</a></span>
1522
+ <small>RRTF::TableCellNode</small>
1523
+ </div>
1524
+ </li>
1525
+
1526
+
1527
+ <li class="even ">
1528
+ <div class="item">
1529
+ <span class='object_link'><a href="RRTF/TableCellNode.html#right_border_width=-instance_method" title="RRTF::TableCellNode#right_border_width= (method)">#right_border_width=</a></span>
1530
+ <small>RRTF::TableCellNode</small>
1531
+ </div>
1532
+ </li>
1533
+
1534
+
1535
+ <li class="odd ">
1536
+ <div class="item">
1537
+ <span class='object_link'><a href="RRTF/ImageNode.html#right_crop-instance_method" title="RRTF::ImageNode#right_crop (method)">#right_crop</a></span>
1538
+ <small>RRTF::ImageNode</small>
1539
+ </div>
1540
+ </li>
1541
+
1542
+
1543
+ <li class="even ">
1544
+ <div class="item">
1545
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#right_margin-instance_method" title="RRTF::DocumentStyle#right_margin (method)">#right_margin</a></span>
1546
+ <small>RRTF::DocumentStyle</small>
1547
+ </div>
1548
+ </li>
1549
+
1550
+
1551
+ <li class="odd ">
1552
+ <div class="item">
1553
+ <span class='object_link'><a href="RRTF/Node.html#root-instance_method" title="RRTF::Node#root (method)">#root</a></span>
1554
+ <small>RRTF::Node</small>
1555
+ </div>
1556
+ </li>
1557
+
1558
+
1559
+ <li class="even ">
1560
+ <div class="item">
1561
+ <span class='object_link'><a href="RRTF/TableNode.html#row_shading_colour-instance_method" title="RRTF::TableNode#row_shading_colour (method)">#row_shading_colour</a></span>
1562
+ <small>RRTF::TableNode</small>
1563
+ </div>
1564
+ </li>
1565
+
1566
+
1567
+ <li class="odd ">
1568
+ <div class="item">
1569
+ <span class='object_link'><a href="RRTF/TableNode.html#rows-instance_method" title="RRTF::TableNode#rows (method)">#rows</a></span>
1570
+ <small>RRTF::TableNode</small>
1571
+ </div>
1572
+ </li>
1573
+
1574
+
1575
+ <li class="even ">
1576
+ <div class="item">
1577
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#rtf_formatting-instance_method" title="RRTF::ParagraphStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1578
+ <small>RRTF::ParagraphStyle</small>
1579
+ </div>
1580
+ </li>
1581
+
1582
+
1583
+ <li class="odd ">
1584
+ <div class="item">
1585
+ <span class='object_link'><a href="RRTF/Style.html#rtf_formatting-instance_method" title="RRTF::Style#rtf_formatting (method)">#rtf_formatting</a></span>
1586
+ <small>RRTF::Style</small>
1587
+ </div>
1588
+ </li>
1589
+
1590
+
1591
+ <li class="even ">
1592
+ <div class="item">
1593
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#rtf_formatting-instance_method" title="RRTF::CharacterStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1594
+ <small>RRTF::CharacterStyle</small>
1595
+ </div>
1596
+ </li>
1597
+
1598
+
1599
+ <li class="odd ">
1600
+ <div class="item">
1601
+ <span class='object_link'><a href="RRTF/CharacterFormatting.html#set_character_formatting_from_hashmap-instance_method" title="RRTF::CharacterFormatting#set_character_formatting_from_hashmap (method)">#set_character_formatting_from_hashmap</a></span>
1602
+ <small>RRTF::CharacterFormatting</small>
1603
+ </div>
1604
+ </li>
1605
+
1606
+
1607
+ <li class="even ">
1608
+ <div class="item">
1609
+ <span class='object_link'><a href="RRTF/ParagraphFormatting.html#set_paragraph_formatting_from_hashmap-instance_method" title="RRTF::ParagraphFormatting#set_paragraph_formatting_from_hashmap (method)">#set_paragraph_formatting_from_hashmap</a></span>
1610
+ <small>RRTF::ParagraphFormatting</small>
1611
+ </div>
1612
+ </li>
1613
+
1614
+
1615
+ <li class="odd ">
1616
+ <div class="item">
1617
+ <span class='object_link'><a href="RRTF/TableNode.html#shading_colour-instance_method" title="RRTF::TableNode#shading_colour (method)">#shading_colour</a></span>
1618
+ <small>RRTF::TableNode</small>
1619
+ </div>
1620
+ </li>
1621
+
1622
+
1623
+ <li class="even ">
1624
+ <div class="item">
1625
+ <span class='object_link'><a href="RRTF/TableCellNode.html#shading_colour-instance_method" title="RRTF::TableCellNode#shading_colour (method)">#shading_colour</a></span>
1626
+ <small>RRTF::TableCellNode</small>
1627
+ </div>
1628
+ </li>
1629
+
1630
+
1631
+ <li class="odd ">
1632
+ <div class="item">
1633
+ <span class='object_link'><a href="RRTF/TableRowNode.html#shading_colour=-instance_method" title="RRTF::TableRowNode#shading_colour= (method)">#shading_colour=</a></span>
1634
+ <small>RRTF::TableRowNode</small>
1635
+ </div>
1636
+ </li>
1637
+
1638
+
1639
+ <li class="even ">
1640
+ <div class="item">
1641
+ <span class='object_link'><a href="RRTF/ColourTable.html#size-instance_method" title="RRTF::ColourTable#size (method)">#size</a></span>
1642
+ <small>RRTF::ColourTable</small>
1643
+ </div>
1644
+ </li>
1645
+
1646
+
1647
+ <li class="odd ">
1648
+ <div class="item">
1649
+ <span class='object_link'><a href="RRTF/ContainerNode.html#size-instance_method" title="RRTF::ContainerNode#size (method)">#size</a></span>
1650
+ <small>RRTF::ContainerNode</small>
1651
+ </div>
1652
+ </li>
1653
+
1654
+
1655
+ <li class="even ">
1656
+ <div class="item">
1657
+ <span class='object_link'><a href="RRTF/FontTable.html#size-instance_method" title="RRTF::FontTable#size (method)">#size</a></span>
1658
+ <small>RRTF::FontTable</small>
1659
+ </div>
1660
+ </li>
1661
+
1662
+
1663
+ <li class="odd ">
1664
+ <div class="item">
1665
+ <span class='object_link'><a href="RRTF/CommandNode.html#split-instance_method" title="RRTF::CommandNode#split (method)">#split</a></span>
1666
+ <small>RRTF::CommandNode</small>
1667
+ </div>
1668
+ </li>
1669
+
1670
+
1671
+ <li class="even ">
1672
+ <div class="item">
1673
+ <span class='object_link'><a href="RRTF/ContainerNode.html#store-instance_method" title="RRTF::ContainerNode#store (method)">#store</a></span>
1674
+ <small>RRTF::ContainerNode</small>
1675
+ </div>
1676
+ </li>
1677
+
1678
+
1679
+ <li class="odd ">
1680
+ <div class="item">
1681
+ <span class='object_link'><a href="RRTF/TableNode.html#store-instance_method" title="RRTF::TableNode#store (method)">#store</a></span>
1682
+ <small>RRTF::TableNode</small>
1683
+ </div>
1684
+ </li>
1685
+
1686
+
1687
+ <li class="even ">
1688
+ <div class="item">
1689
+ <span class='object_link'><a href="RRTF/CommandNode.html#strike-instance_method" title="RRTF::CommandNode#strike (method)">#strike</a></span>
1690
+ <small>RRTF::CommandNode</small>
1691
+ </div>
1692
+ </li>
1693
+
1694
+
1695
+ <li class="odd ">
1696
+ <div class="item">
1697
+ <span class='object_link'><a href="RRTF/Document.html#style-instance_method" title="RRTF::Document#style (method)">#style</a></span>
1698
+ <small>RRTF::Document</small>
1699
+ </div>
1700
+ </li>
1701
+
1702
+
1703
+ <li class="even ">
1704
+ <div class="item">
1705
+ <span class='object_link'><a href="RRTF/Converters/HTML/Helpers.html#style-instance_method" title="RRTF::Converters::HTML::Helpers#style (method)">#style</a></span>
1706
+ <small>RRTF::Converters::HTML::Helpers</small>
1707
+ </div>
1708
+ </li>
1709
+
1710
+
1711
+ <li class="odd ">
1712
+ <div class="item">
1713
+ <span class='object_link'><a href="RRTF/TableCellNode.html#style-instance_method" title="RRTF::TableCellNode#style (method)">#style</a></span>
1714
+ <small>RRTF::TableCellNode</small>
1715
+ </div>
1716
+ </li>
1717
+
1718
+
1719
+ <li class="even ">
1720
+ <div class="item">
1721
+ <span class='object_link'><a href="RRTF/Style.html#styledef-instance_method" title="RRTF::Style#styledef (method)">#styledef</a></span>
1722
+ <small>RRTF::Style</small>
1723
+ </div>
1724
+ </li>
1725
+
1726
+
1727
+ <li class="odd ">
1728
+ <div class="item">
1729
+ <span class='object_link'><a href="RRTF/Style.html#stylename-instance_method" title="RRTF::Style#stylename (method)">#stylename</a></span>
1730
+ <small>RRTF::Style</small>
1731
+ </div>
1732
+ </li>
1733
+
1734
+
1735
+ <li class="even ">
1736
+ <div class="item">
1737
+ <span class='object_link'><a href="RRTF/Stylesheet.html#styles-instance_method" title="RRTF::Stylesheet#styles (method)">#styles</a></span>
1738
+ <small>RRTF::Stylesheet</small>
1739
+ </div>
1740
+ </li>
1741
+
1742
+
1743
+ <li class="odd ">
1744
+ <div class="item">
1745
+ <span class='object_link'><a href="RRTF/Document.html#stylesheet-instance_method" title="RRTF::Document#stylesheet (method)">#stylesheet</a></span>
1746
+ <small>RRTF::Document</small>
1747
+ </div>
1748
+ </li>
1749
+
1750
+
1751
+ <li class="even ">
1752
+ <div class="item">
1753
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#stylesheet_sort-instance_method" title="RRTF::DocumentStyle#stylesheet_sort (method)">#stylesheet_sort</a></span>
1754
+ <small>RRTF::DocumentStyle</small>
1755
+ </div>
1756
+ </li>
1757
+
1758
+
1759
+ <li class="odd ">
1760
+ <div class="item">
1761
+ <span class='object_link'><a href="RRTF/CommandNode.html#subscript-instance_method" title="RRTF::CommandNode#subscript (method)">#subscript</a></span>
1762
+ <small>RRTF::CommandNode</small>
1763
+ </div>
1764
+ </li>
1765
+
1766
+
1767
+ <li class="even ">
1768
+ <div class="item">
1769
+ <span class='object_link'><a href="RRTF/CommandNode.html#suffix-instance_method" title="RRTF::CommandNode#suffix (method)">#suffix</a></span>
1770
+ <small>RRTF::CommandNode</small>
1771
+ </div>
1772
+ </li>
1773
+
1774
+
1775
+ <li class="odd ">
1776
+ <div class="item">
1777
+ <span class='object_link'><a href="RRTF/Style.html#suffix-instance_method" title="RRTF::Style#suffix (method)">#suffix</a></span>
1778
+ <small>RRTF::Style</small>
1779
+ </div>
1780
+ </li>
1781
+
1782
+
1783
+ <li class="even ">
1784
+ <div class="item">
1785
+ <span class='object_link'><a href="RRTF/CommandNode.html#superscript-instance_method" title="RRTF::CommandNode#superscript (method)">#superscript</a></span>
1786
+ <small>RRTF::CommandNode</small>
1787
+ </div>
1788
+ </li>
1789
+
1790
+
1791
+ <li class="odd ">
1792
+ <div class="item">
1793
+ <span class='object_link'><a href="RRTF/TableCellNode.html#table-instance_method" title="RRTF::TableCellNode#table (method)">#table</a></span>
1794
+ <small>RRTF::TableCellNode</small>
1795
+ </div>
1796
+ </li>
1797
+
1798
+
1799
+ <li class="even ">
1800
+ <div class="item">
1801
+ <span class='object_link'><a href="RRTF/CommandNode.html#table-instance_method" title="RRTF::CommandNode#table (method)">#table</a></span>
1802
+ <small>RRTF::CommandNode</small>
1803
+ </div>
1804
+ </li>
1805
+
1806
+
1807
+ <li class="odd ">
1808
+ <div class="item">
1809
+ <span class='object_link'><a href="RRTF/ListLevel.html#tabs-instance_method" title="RRTF::ListLevel#tabs (method)">#tabs</a></span>
1810
+ <small>RRTF::ListLevel</small>
1811
+ </div>
1812
+ </li>
1813
+
1814
+
1815
+ <li class="even ">
1816
+ <div class="item">
1817
+ <span class='object_link'><a href="RRTF/ListMarker.html#template_format-instance_method" title="RRTF::ListMarker#template_format (method)">#template_format</a></span>
1818
+ <small>RRTF::ListMarker</small>
1819
+ </div>
1820
+ </li>
1821
+
1822
+
1823
+ <li class="odd ">
1824
+ <div class="item">
1825
+ <span class='object_link'><a href="RRTF/TextNode.html#text-instance_method" title="RRTF::TextNode#text (method)">#text</a></span>
1826
+ <small>RRTF::TextNode</small>
1827
+ </div>
1828
+ </li>
1829
+
1830
+
1831
+ <li class="even ">
1832
+ <div class="item">
1833
+ <span class='object_link'><a href="RRTF/ListMarker.html#text_format-instance_method" title="RRTF::ListMarker#text_format (method)">#text_format</a></span>
1834
+ <small>RRTF::ListMarker</small>
1835
+ </div>
1836
+ </li>
1837
+
1838
+
1839
+ <li class="odd ">
1840
+ <div class="item">
1841
+ <span class='object_link'><a href="RRTF/Information.html#title-instance_method" title="RRTF::Information#title (method)">#title</a></span>
1842
+ <small>RRTF::Information</small>
1843
+ </div>
1844
+ </li>
1845
+
1846
+
1847
+ <li class="even ">
1848
+ <div class="item">
1849
+ <span class='object_link'><a href="RRTF/Font.html#to_rtf-instance_method" title="RRTF::Font#to_rtf (method)">#to_rtf</a></span>
1850
+ <small>RRTF::Font</small>
1851
+ </div>
1852
+ </li>
1853
+
1854
+
1855
+ <li class="odd ">
1856
+ <div class="item">
1857
+ <span class='object_link'><a href="RRTF/ContainerNode.html#to_rtf-instance_method" title="RRTF::ContainerNode#to_rtf (method)">#to_rtf</a></span>
1858
+ <small>RRTF::ContainerNode</small>
1859
+ </div>
1860
+ </li>
1861
+
1862
+
1863
+ <li class="even ">
1864
+ <div class="item">
1865
+ <span class='object_link'><a href="RRTF/Converters/HTML/NodeSet.html#to_rtf-instance_method" title="RRTF::Converters::HTML::NodeSet#to_rtf (method)">#to_rtf</a></span>
1866
+ <small>RRTF::Converters::HTML::NodeSet</small>
1867
+ </div>
1868
+ </li>
1869
+
1870
+
1871
+ <li class="odd ">
1872
+ <div class="item">
1873
+ <span class='object_link'><a href="RRTF/TableRowNode.html#to_rtf-instance_method" title="RRTF::TableRowNode#to_rtf (method)">#to_rtf</a></span>
1874
+ <small>RRTF::TableRowNode</small>
1875
+ </div>
1876
+ </li>
1877
+
1878
+
1879
+ <li class="even ">
1880
+ <div class="item">
1881
+ <span class='object_link'><a href="RRTF/Converters/HTML/Node.html#to_rtf-instance_method" title="RRTF::Converters::HTML::Node#to_rtf (method)">#to_rtf</a></span>
1882
+ <small>RRTF::Converters::HTML::Node</small>
1883
+ </div>
1884
+ </li>
1885
+
1886
+
1887
+ <li class="odd ">
1888
+ <div class="item">
1889
+ <span class='object_link'><a href="RRTF/TableCellNode.html#to_rtf-instance_method" title="RRTF::TableCellNode#to_rtf (method)">#to_rtf</a></span>
1890
+ <small>RRTF::TableCellNode</small>
1891
+ </div>
1892
+ </li>
1893
+
1894
+
1895
+ <li class="even ">
1896
+ <div class="item">
1897
+ <span class='object_link'><a href="RRTF/ColourTable.html#to_rtf-instance_method" title="RRTF::ColourTable#to_rtf (method)">#to_rtf</a></span>
1898
+ <small>RRTF::ColourTable</small>
1899
+ </div>
1900
+ </li>
1901
+
1902
+
1903
+ <li class="odd ">
1904
+ <div class="item">
1905
+ <span class='object_link'><a href="RRTF/TextNode.html#to_rtf-instance_method" title="RRTF::TextNode#to_rtf (method)">#to_rtf</a></span>
1906
+ <small>RRTF::TextNode</small>
1907
+ </div>
1908
+ </li>
1909
+
1910
+
1911
+ <li class="even ">
1912
+ <div class="item">
1913
+ <span class='object_link'><a href="RRTF/ImageNode.html#to_rtf-instance_method" title="RRTF::ImageNode#to_rtf (method)">#to_rtf</a></span>
1914
+ <small>RRTF::ImageNode</small>
1915
+ </div>
1916
+ </li>
1917
+
1918
+
1919
+ <li class="odd ">
1920
+ <div class="item">
1921
+ <span class='object_link'><a href="RRTF/TableNode.html#to_rtf-instance_method" title="RRTF::TableNode#to_rtf (method)">#to_rtf</a></span>
1922
+ <small>RRTF::TableNode</small>
1923
+ </div>
1924
+ </li>
1925
+
1926
+
1927
+ <li class="even ">
1928
+ <div class="item">
1929
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#to_rtf-instance_method" title="RRTF::CharacterStyle#to_rtf (method)">#to_rtf</a></span>
1930
+ <small>RRTF::CharacterStyle</small>
1931
+ </div>
1932
+ </li>
1933
+
1934
+
1935
+ <li class="odd ">
1936
+ <div class="item">
1937
+ <span class='object_link'><a href="RRTF/Colour.html#to_rtf-instance_method" title="RRTF::Colour#to_rtf (method)">#to_rtf</a></span>
1938
+ <small>RRTF::Colour</small>
1939
+ </div>
1940
+ </li>
1941
+
1942
+
1943
+ <li class="even ">
1944
+ <div class="item">
1945
+ <span class='object_link'><a href="RRTF/Style.html#to_rtf-instance_method" title="RRTF::Style#to_rtf (method)">#to_rtf</a></span>
1946
+ <small>RRTF::Style</small>
1947
+ </div>
1948
+ </li>
1949
+
1950
+
1951
+ <li class="odd ">
1952
+ <div class="item">
1953
+ <span class='object_link'><a href="RRTF/FontTable.html#to_rtf-instance_method" title="RRTF::FontTable#to_rtf (method)">#to_rtf</a></span>
1954
+ <small>RRTF::FontTable</small>
1955
+ </div>
1956
+ </li>
1957
+
1958
+
1959
+ <li class="even ">
1960
+ <div class="item">
1961
+ <span class='object_link'><a href="RRTF/ListLevel.html#to_rtf-instance_method" title="RRTF::ListLevel#to_rtf (method)">#to_rtf</a></span>
1962
+ <small>RRTF::ListLevel</small>
1963
+ </div>
1964
+ </li>
1965
+
1966
+
1967
+ <li class="odd ">
1968
+ <div class="item">
1969
+ <span class='object_link'><a href="RRTF/ListTable.html#to_rtf-instance_method" title="RRTF::ListTable#to_rtf (method)">#to_rtf</a></span>
1970
+ <small>RRTF::ListTable</small>
1971
+ </div>
1972
+ </li>
1973
+
1974
+
1975
+ <li class="even ">
1976
+ <div class="item">
1977
+ <span class='object_link'><a href="RRTF/Information.html#to_rtf-instance_method" title="RRTF::Information#to_rtf (method)">#to_rtf</a></span>
1978
+ <small>RRTF::Information</small>
1979
+ </div>
1980
+ </li>
1981
+
1982
+
1983
+ <li class="odd ">
1984
+ <div class="item">
1985
+ <span class='object_link'><a href="RRTF/ListTemplate.html#to_rtf-instance_method" title="RRTF::ListTemplate#to_rtf (method)">#to_rtf</a></span>
1986
+ <small>RRTF::ListTemplate</small>
1987
+ </div>
1988
+ </li>
1989
+
1990
+
1991
+ <li class="even ">
1992
+ <div class="item">
1993
+ <span class='object_link'><a href="RRTF/Stylesheet.html#to_rtf-instance_method" title="RRTF::Stylesheet#to_rtf (method)">#to_rtf</a></span>
1994
+ <small>RRTF::Stylesheet</small>
1995
+ </div>
1996
+ </li>
1997
+
1998
+
1999
+ <li class="odd ">
2000
+ <div class="item">
2001
+ <span class='object_link'><a href="RRTF/CommandNode.html#to_rtf-instance_method" title="RRTF::CommandNode#to_rtf (method)">#to_rtf</a></span>
2002
+ <small>RRTF::CommandNode</small>
2003
+ </div>
2004
+ </li>
2005
+
2006
+
2007
+ <li class="even ">
2008
+ <div class="item">
2009
+ <span class='object_link'><a href="RRTF/Document.html#to_rtf-instance_method" title="RRTF::Document#to_rtf (method)">#to_rtf</a></span>
2010
+ <small>RRTF::Document</small>
2011
+ </div>
2012
+ </li>
2013
+
2014
+
2015
+ <li class="odd ">
2016
+ <div class="item">
2017
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#to_rtf-instance_method" title="RRTF::ParagraphStyle#to_rtf (method)">#to_rtf</a></span>
2018
+ <small>RRTF::ParagraphStyle</small>
2019
+ </div>
2020
+ </li>
2021
+
2022
+
2023
+ <li class="even ">
2024
+ <div class="item">
2025
+ <span class='object_link'><a href="RRTF/Converters/HTML.html#to_rtf-instance_method" title="RRTF::Converters::HTML#to_rtf (method)">#to_rtf</a></span>
2026
+ <small>RRTF::Converters::HTML</small>
2027
+ </div>
2028
+ </li>
2029
+
2030
+
2031
+ <li class="odd ">
2032
+ <div class="item">
2033
+ <span class='object_link'><a href="RRTF/Converters/HTML.html#to_rtf_document-instance_method" title="RRTF::Converters::HTML#to_rtf_document (method)">#to_rtf_document</a></span>
2034
+ <small>RRTF::Converters::HTML</small>
2035
+ </div>
2036
+ </li>
2037
+
2038
+
2039
+ <li class="even ">
2040
+ <div class="item">
2041
+ <span class='object_link'><a href="RRTF/Colour.html#to_s-instance_method" title="RRTF::Colour#to_s (method)">#to_s</a></span>
2042
+ <small>RRTF::Colour</small>
2043
+ </div>
2044
+ </li>
2045
+
2046
+
2047
+ <li class="odd ">
2048
+ <div class="item">
2049
+ <span class='object_link'><a href="RRTF/ColourTable.html#to_s-instance_method" title="RRTF::ColourTable#to_s (method)">#to_s</a></span>
2050
+ <small>RRTF::ColourTable</small>
2051
+ </div>
2052
+ </li>
2053
+
2054
+
2055
+ <li class="even ">
2056
+ <div class="item">
2057
+ <span class='object_link'><a href="RRTF/Information.html#to_s-instance_method" title="RRTF::Information#to_s (method)">#to_s</a></span>
2058
+ <small>RRTF::Information</small>
2059
+ </div>
2060
+ </li>
2061
+
2062
+
2063
+ <li class="odd ">
2064
+ <div class="item">
2065
+ <span class='object_link'><a href="RRTF/FontTable.html#to_s-instance_method" title="RRTF::FontTable#to_s (method)">#to_s</a></span>
2066
+ <small>RRTF::FontTable</small>
2067
+ </div>
2068
+ </li>
2069
+
2070
+
2071
+ <li class="even ">
2072
+ <div class="item">
2073
+ <span class='object_link'><a href="RRTF/Font.html#to_s-instance_method" title="RRTF::Font#to_s (method)">#to_s</a></span>
2074
+ <small>RRTF::Font</small>
2075
+ </div>
2076
+ </li>
2077
+
2078
+
2079
+ <li class="odd ">
2080
+ <div class="item">
2081
+ <span class='object_link'><a href="RRTF/TableCellNode.html#top_border_width-instance_method" title="RRTF::TableCellNode#top_border_width (method)">#top_border_width</a></span>
2082
+ <small>RRTF::TableCellNode</small>
2083
+ </div>
2084
+ </li>
2085
+
2086
+
2087
+ <li class="even ">
2088
+ <div class="item">
2089
+ <span class='object_link'><a href="RRTF/TableCellNode.html#top_border_width=-instance_method" title="RRTF::TableCellNode#top_border_width= (method)">#top_border_width=</a></span>
2090
+ <small>RRTF::TableCellNode</small>
2091
+ </div>
2092
+ </li>
2093
+
2094
+
2095
+ <li class="odd ">
2096
+ <div class="item">
2097
+ <span class='object_link'><a href="RRTF/ImageNode.html#top_crop-instance_method" title="RRTF::ImageNode#top_crop (method)">#top_crop</a></span>
2098
+ <small>RRTF::ImageNode</small>
2099
+ </div>
2100
+ </li>
2101
+
2102
+
2103
+ <li class="even ">
2104
+ <div class="item">
2105
+ <span class='object_link'><a href="RRTF/DocumentStyle.html#top_margin-instance_method" title="RRTF::DocumentStyle#top_margin (method)">#top_margin</a></span>
2106
+ <small>RRTF::DocumentStyle</small>
2107
+ </div>
2108
+ </li>
2109
+
2110
+
2111
+ <li class="odd ">
2112
+ <div class="item">
2113
+ <span class='object_link'><a href="RRTF/ListLevel.html#type-instance_method" title="RRTF::ListLevel#type (method)">#type</a></span>
2114
+ <small>RRTF::ListLevel</small>
2115
+ </div>
2116
+ </li>
2117
+
2118
+
2119
+ <li class="even ">
2120
+ <div class="item">
2121
+ <span class='object_link'><a href="RRTF/ListMarker.html#type-instance_method" title="RRTF::ListMarker#type (method)">#type</a></span>
2122
+ <small>RRTF::ListMarker</small>
2123
+ </div>
2124
+ </li>
2125
+
2126
+
2127
+ <li class="odd ">
2128
+ <div class="item">
2129
+ <span class='object_link'><a href="RRTF/FooterNode.html#type-instance_method" title="RRTF::FooterNode#type (method)">#type</a></span>
2130
+ <small>RRTF::FooterNode</small>
2131
+ </div>
2132
+ </li>
2133
+
2134
+
2135
+ <li class="even ">
2136
+ <div class="item">
2137
+ <span class='object_link'><a href="RRTF/HeaderNode.html#type-instance_method" title="RRTF::HeaderNode#type (method)">#type</a></span>
2138
+ <small>RRTF::HeaderNode</small>
2139
+ </div>
2140
+ </li>
2141
+
2142
+
2143
+ <li class="odd ">
2144
+ <div class="item">
2145
+ <span class='object_link'><a href="RRTF/CommandNode.html#underline-instance_method" title="RRTF::CommandNode#underline (method)">#underline</a></span>
2146
+ <small>RRTF::CommandNode</small>
2147
+ </div>
2148
+ </li>
2149
+
2150
+
2151
+ <li class="even ">
2152
+ <div class="item">
2153
+ <span class='object_link'><a href="RRTF/Paper.html#width-instance_method" title="RRTF::Paper#width (method)">#width</a></span>
2154
+ <small>RRTF::Paper</small>
2155
+ </div>
2156
+ </li>
2157
+
2158
+
2159
+ <li class="odd ">
2160
+ <div class="item">
2161
+ <span class='object_link'><a href="RRTF/TableCellNode.html#width-instance_method" title="RRTF::TableCellNode#width (method)">#width</a></span>
2162
+ <small>RRTF::TableCellNode</small>
2163
+ </div>
2164
+ </li>
2165
+
2166
+
2167
+ <li class="even ">
2168
+ <div class="item">
2169
+ <span class='object_link'><a href="RRTF/ImageNode.html#width-instance_method" title="RRTF::ImageNode#width (method)">#width</a></span>
2170
+ <small>RRTF::ImageNode</small>
2171
+ </div>
2172
+ </li>
2173
+
2174
+
2175
+ <li class="odd ">
2176
+ <div class="item">
2177
+ <span class='object_link'><a href="RRTF/CommandNode.html#wrap-instance_method" title="RRTF::CommandNode#wrap (method)">#wrap</a></span>
2178
+ <small>RRTF::CommandNode</small>
2179
+ </div>
2180
+ </li>
2181
+
2182
+
2183
+ <li class="even ">
2184
+ <div class="item">
2185
+ <span class='object_link'><a href="RRTF/ImageNode.html#x_scaling-instance_method" title="RRTF::ImageNode#x_scaling (method)">#x_scaling</a></span>
2186
+ <small>RRTF::ImageNode</small>
2187
+ </div>
2188
+ </li>
2189
+
2190
+
2191
+ <li class="odd ">
2192
+ <div class="item">
2193
+ <span class='object_link'><a href="RRTF/ImageNode.html#y_scaling-instance_method" title="RRTF::ImageNode#y_scaling (method)">#y_scaling</a></span>
2194
+ <small>RRTF::ImageNode</small>
2195
+ </div>
2196
+ </li>
2197
+
2198
+
2199
+
2200
+ </ul>
2201
+ </div>
2202
+ </body>
2203
+ </html>