rrtf 0.1.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/.byebug_history +6 -3
  3. data/CHANGELOG.md +24 -0
  4. data/README.md +194 -84
  5. data/documentation/RRTF.html +5 -5
  6. data/documentation/RRTF/AnonymousStyle.html +792 -0
  7. data/documentation/RRTF/BorderFormatting.html +821 -0
  8. data/documentation/RRTF/BorderStyle.html +493 -0
  9. data/documentation/RRTF/CharacterFormatting.html +293 -162
  10. data/documentation/RRTF/CharacterStyle.html +53 -109
  11. data/documentation/RRTF/Colour.html +61 -1
  12. data/documentation/RRTF/ColourTable.html +52 -52
  13. data/documentation/RRTF/CommandNode.html +367 -971
  14. data/documentation/RRTF/ContainerNode.html +44 -44
  15. data/documentation/RRTF/Converters.html +1 -1
  16. data/documentation/RRTF/Converters/HTML.html +1 -1
  17. data/documentation/RRTF/Converters/HTML/Helpers.html +1 -1
  18. data/documentation/RRTF/Converters/HTML/Node.html +1 -1
  19. data/documentation/RRTF/Converters/HTML/NodeSet.html +1 -1
  20. data/documentation/RRTF/Document.html +267 -255
  21. data/documentation/RRTF/DocumentFormatting.html +833 -0
  22. data/documentation/RRTF/DocumentProperties.html +444 -0
  23. data/documentation/RRTF/Font.html +1 -1
  24. data/documentation/RRTF/FontTable.html +1 -1
  25. data/documentation/RRTF/FooterNode.html +16 -16
  26. data/documentation/RRTF/GeometryNode.html +774 -0
  27. data/documentation/RRTF/GeometryProperties.html +1014 -0
  28. data/documentation/RRTF/HeaderNode.html +16 -16
  29. data/documentation/RRTF/ImageNode.html +705 -492
  30. data/documentation/RRTF/Information.html +1 -1
  31. data/documentation/RRTF/LinkNode.html +10 -10
  32. data/documentation/RRTF/ListLevel.html +1 -1
  33. data/documentation/RRTF/ListLevelNode.html +37 -37
  34. data/documentation/RRTF/ListMarker.html +1 -1
  35. data/documentation/RRTF/ListNode.html +19 -19
  36. data/documentation/RRTF/ListTable.html +1 -1
  37. data/documentation/RRTF/ListTemplate.html +1 -1
  38. data/documentation/RRTF/ListTextNode.html +14 -14
  39. data/documentation/RRTF/Node.html +26 -26
  40. data/documentation/RRTF/Page.html +129 -0
  41. data/documentation/RRTF/Page/Margin.html +1158 -0
  42. data/documentation/RRTF/Page/Size.html +946 -0
  43. data/documentation/RRTF/PageFormatting.html +954 -0
  44. data/documentation/RRTF/ParagraphFormatting.html +338 -56
  45. data/documentation/RRTF/ParagraphNode.html +10 -10
  46. data/documentation/RRTF/ParagraphStyle.html +72 -111
  47. data/documentation/RRTF/PositionFormatting.html +780 -0
  48. data/documentation/RRTF/PositionStyle.html +424 -0
  49. data/documentation/RRTF/Properties.html +243 -0
  50. data/documentation/RRTF/RTFError.html +21 -10
  51. data/documentation/RRTF/ShadingFormatting.html +712 -0
  52. data/documentation/RRTF/ShadingStyle.html +424 -0
  53. data/documentation/RRTF/Style.html +284 -697
  54. data/documentation/RRTF/Stylesheet.html +36 -3
  55. data/documentation/RRTF/TableCellNode.html +131 -131
  56. data/documentation/RRTF/TableNode.html +82 -82
  57. data/documentation/RRTF/TableRowNode.html +53 -53
  58. data/documentation/RRTF/TextNode.html +46 -46
  59. data/documentation/RRTF/Utilities.html +837 -17
  60. data/documentation/_index.html +139 -6
  61. data/documentation/class_list.html +1 -1
  62. data/documentation/file.README.html +218 -87
  63. data/documentation/index.html +218 -87
  64. data/documentation/method_list.html +631 -391
  65. data/documentation/top-level-namespace.html +1 -1
  66. data/examples/01.rtf +947 -20
  67. data/examples/01_everything.rb +176 -0
  68. data/examples/02.rtf +13 -0
  69. data/examples/02_basic_paragraph.rb +10 -0
  70. data/examples/03.rtf +20 -0
  71. data/examples/03_paragraph_inline_style.rb +14 -0
  72. data/examples/04.rtf +21 -0
  73. data/examples/04_paragraph_with_character_style.rb +18 -0
  74. data/examples/05.rtf +21 -0
  75. data/examples/05_hyperlinks.rb +21 -0
  76. data/examples/06.rtf +21 -0
  77. data/examples/06_basic_list.rb +21 -0
  78. data/examples/07.rtf +28 -0
  79. data/examples/07_nested_list.rb +27 -0
  80. data/examples/08.rtf +807 -0
  81. data/examples/08_images.rb +17 -0
  82. data/examples/09.rtf +84 -0
  83. data/examples/09_shapes.rb +56 -0
  84. data/examples/10.rtf +34 -0
  85. data/examples/10_stylesheet.rb +18 -0
  86. data/examples/resources/images/redshirt.png +0 -0
  87. data/examples/resources/images/redshirts.jpg +0 -0
  88. data/examples/resources/json/redshirt_styles.json +72 -8
  89. data/examples/~$01.rtf +0 -0
  90. data/lib/rrtf.rb +4 -16
  91. data/lib/rrtf/colour.rb +8 -0
  92. data/lib/rrtf/formatting.rb +988 -0
  93. data/lib/rrtf/node.rb +17 -1851
  94. data/lib/rrtf/node/command_node.rb +242 -0
  95. data/lib/rrtf/node/container_node.rb +75 -0
  96. data/lib/rrtf/node/document.rb +339 -0
  97. data/lib/rrtf/node/footer_node.rb +47 -0
  98. data/lib/rrtf/node/geometry_node.rb +65 -0
  99. data/lib/rrtf/node/header_node.rb +47 -0
  100. data/lib/rrtf/node/image_node.rb +175 -0
  101. data/lib/rrtf/node/link_node.rb +10 -0
  102. data/lib/rrtf/node/list_level_node.rb +44 -0
  103. data/lib/rrtf/node/list_node.rb +30 -0
  104. data/lib/rrtf/node/list_text_node.rb +22 -0
  105. data/lib/rrtf/node/node.rb +53 -0
  106. data/lib/rrtf/node/paragraph_node.rb +11 -0
  107. data/lib/rrtf/node/table_cell_node.rb +233 -0
  108. data/lib/rrtf/node/table_node.rb +136 -0
  109. data/lib/rrtf/node/table_row_node.rb +92 -0
  110. data/lib/rrtf/node/text_node.rb +76 -0
  111. data/lib/rrtf/page.rb +7 -0
  112. data/lib/rrtf/page/margin.rb +98 -0
  113. data/lib/rrtf/page/size.rb +98 -0
  114. data/lib/rrtf/properties.rb +3 -0
  115. data/lib/rrtf/properties/document_properties.rb +34 -0
  116. data/lib/rrtf/properties/geometry_properties.rb +380 -0
  117. data/lib/rrtf/properties/properties.rb +13 -0
  118. data/lib/rrtf/style.rb +4 -5
  119. data/lib/rrtf/style/anonymous_style.rb +73 -0
  120. data/lib/rrtf/style/border_style.rb +27 -0
  121. data/lib/rrtf/style/character_style.rb +1 -7
  122. data/lib/rrtf/style/paragraph_style.rb +0 -6
  123. data/lib/rrtf/style/position_style.rb +26 -0
  124. data/lib/rrtf/style/shading_style.rb +26 -0
  125. data/lib/rrtf/style/style.rb +60 -101
  126. data/lib/rrtf/utilities.rb +138 -0
  127. data/lib/rrtf/version.rb +1 -1
  128. data/rrtf.gemspec +1 -0
  129. metadata +85 -10
  130. data/examples/01_mac_libreoffice5_2_3_3.png +0 -0
  131. data/examples/01_mac_pages6_2.png +0 -0
  132. data/examples/01_mac_textedit1_12.png +0 -0
  133. data/examples/01_mac_word15_36.png +0 -0
  134. data/examples/01_styles_and_paragraphs.rb +0 -32
  135. data/lib/rrtf/paper.rb +0 -53
  136. data/lib/rrtf/style/document_style.rb +0 -116
  137. data/lib/rrtf/style/formatting.rb +0 -320
@@ -63,21 +63,45 @@
63
63
  <p>RRTF enables programatic creation of Rich Text Format (RTF) documents in
64
64
  Ruby, focusing on simplifying RTF document assembly and generating clean
65
65
  RTF source code. This gem is founded on the <a
66
- href="https://github.com/clbustos/rtf">ifad-rtf gem</a>, but differs in
67
- several respects:</p>
66
+ href="https://github.com/clbustos/rtf">ifad-rtf gem</a>, but has simpler
67
+ syntax and supports more RTF constructs.</p>
68
68
  <ul><li>
69
- <p>The syntax for creating documents and styles is simpler.</p>
69
+ <p><strong>Document</strong>: Page orientation, size, margin, and gutter;
70
+ mirror margins, tab width, enable/disable hyphenation, hyphenation width,
71
+ maximum consecutive hyphenations, and enable/disable widow-and-orphan
72
+ control.</p>
70
73
  </li><li>
71
- <p>Paragraph styles can take on character formatting attributes (in accord to
72
- the RTF specification).</p>
74
+ <p><strong>Text</strong>: Bold, italic, underline, underline color, uppercase,
75
+ subscript, superscript, strike, emboss, imprint, foreground color,
76
+ background color, hidden, kerning, character spacing, highlight, font, font
77
+ size.</p>
73
78
  </li><li>
74
- <p>Document stylesheets can be defined, enabling the end user to easily modify
75
- the look larger RTF documents.</p>
79
+ <p><strong>Paragraphs</strong>: Justification, left indent, right indent,
80
+ first line indent, space before, space after, line spacing, indentation,
81
+ drop caps, keep-on-page, keep-with-next, enable/disable hyphenation,
82
+ enable/disable widow-and-orphan control, absolute positioning (frames),
83
+ borders, and shading.</p>
84
+ </li><li>
85
+ <p><strong>Hyperlinks</strong>: Insert hyperlinks in text runs.</p>
86
+ </li><li>
87
+ <p><strong>Lists</strong>: Basic unordered (bullet) lists.</p>
88
+ </li><li>
89
+ <p><strong>Images</strong>: Embed, size, and define borders for PNG, JPEG, and
90
+ BMP images.</p>
91
+ </li><li>
92
+ <p><strong>Shapes</strong>: Draw basic shapes, custom shapes, and text boxes.</p>
93
+ </li><li>
94
+ <p><strong>Stylesheets</strong>: Define paragraph and character styles,
95
+ enabling the end user to easily modify the look of RTF documents.</p>
76
96
  </li></ul>
77
97
 
78
98
  <p>The gem was created with reference to the <a
79
99
  href="https://www.microsoft.com/en-us/download/details.aspx?id=10725">Microsoft
80
- Office RTF Specification (v1.9.1)</a>.</p>
100
+ Office RTF Specification (v1.9.1)</a>. The syntax for custom shapes was
101
+ determined by reverse engineering the RTF output from Word 2016 and
102
+ reference to <a
103
+ href="https://www.loc.gov/preservation/digital/formats/digformatspecs/OfficeDrawing97-2007BinaryFormatSpecification.pdf">Microsoft’s
104
+ Binary Format Specification (pp. 32-33)</a>.</p>
81
105
 
82
106
  <h2 id="label-Installation">Installation</h2>
83
107
 
@@ -96,96 +120,203 @@ Office RTF Specification (v1.9.1)</a>.</p>
96
120
 
97
121
  <h2 id="label-Usage">Usage</h2>
98
122
 
99
- <p>Define the paragraph and character styles your document is to leverage in a
100
- hashmap array or JSON file:</p>
101
-
102
- <pre class="code ruby"><code class="ruby"><span class='lbracket'>[</span>
103
- <span class='lbrace'>{</span>
104
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>paragraph</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
105
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>id</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>TITLE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
106
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>name</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Title</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
107
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>primary</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
108
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>auto_update</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
109
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>next_style</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
110
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>base_style</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
111
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>justification</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>CENTER</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
112
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>space_after</span><span class='label_end'>&quot;:</span> <span class='int'>100</span><span class='comma'>,</span>
113
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>bold</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
114
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>DOUBLE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
115
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline_color</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
116
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>uppercase</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
117
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>font_size</span><span class='label_end'>&quot;:</span> <span class='int'>36</span>
118
- <span class='rbrace'>}</span><span class='comma'>,</span>
119
- <span class='lbrace'>{</span>
120
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>paragraph</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
121
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>id</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>H1</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
122
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>name</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Heading 1</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
123
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>primary</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
124
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>next_style</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
125
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>space_after</span><span class='label_end'>&quot;:</span> <span class='int'>40</span><span class='comma'>,</span>
126
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>space_before</span><span class='label_end'>&quot;:</span> <span class='int'>200</span><span class='comma'>,</span>
127
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>SINGLE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
128
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline_color</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
129
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>bold</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
130
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>font_size</span><span class='label_end'>&quot;:</span> <span class='int'>24</span>
131
- <span class='rbrace'>}</span><span class='comma'>,</span>
132
- <span class='lbrace'>{</span>
133
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>paragraph</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
134
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>id</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
135
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>name</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Body</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
136
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>primary</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
137
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>justification</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>LEFT</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
138
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>font_size</span><span class='label_end'>&quot;:</span> <span class='int'>24</span><span class='comma'>,</span>
139
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>hyphenate</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span>
140
- <span class='rbrace'>}</span><span class='comma'>,</span>
141
- <span class='lbrace'>{</span>
142
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>character</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
143
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>id</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>EMPH</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
144
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>name</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Emphasis</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
145
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>additive</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
146
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>italic</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
147
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>bold</span><span class='label_end'>&quot;:</span> <span class='kw'>true</span><span class='comma'>,</span>
148
- <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>foreground_color</span><span class='label_end'>&quot;:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&quot;</span></span>
149
- <span class='rbrace'>}</span>
150
- <span class='rbracket'>]</span>
123
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>rrtf</span><span class='tstring_end'>&#39;</span></span>
124
+
125
+ <span class='comment'># Construct an object representing the RTF document
126
+ </span><span class='id identifier rubyid_rtf'>rtf</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="RRTF.html" title="RRTF (module)">RRTF</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="RRTF/Document.html" title="RRTF::Document (class)">Document</a></span></span><span class='period'>.</span><span class='id identifier rubyid_new'><span class='object_link'><a href="RRTF/Document.html#initialize-instance_method" title="RRTF::Document#initialize (method)">new</a></span></span>
127
+
128
+ <span class='comment'># ...
129
+ </span><span class='comment'># Call methods on `rtf` to generate content
130
+ </span><span class='comment'># ...
131
+ </span>
132
+ <span class='comment'># Convert document into RTF string
133
+ </span><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_to_rtf'>to_rtf</span>
151
134
  </code></pre>
152
135
 
153
- <p>(Note that font size is given in <em>half points</em> and spacing in
154
- <em>twentieth points</em>, or “twips” using the somewhat disagreeable
155
- abbreviation, in accord with the RTF specification.)</p>
136
+ <h4 id="label-Paragraphs">Paragraphs</h4>
137
+ <ul><li>
138
+ <p><strong>Plain paragraph</strong></p>
139
+ </li></ul>
156
140
 
157
- <p>Create a RTF document object using the settings needed for your document,
158
- then build your document and save it in an RTF file:</p>
141
+ <p><code>ruby rtf.paragraph &lt;&lt; \ &quot;Should you ever find
142
+ yourself on a spacefaring vessel &quot;\ &quot;wearing RED shirt,
143
+ take heed and be on guard, for danger &quot;\ &quot;is immanent and
144
+ you are likely expendable among the crew.&quot; </code></p>
145
+ <ul><li>
146
+ <p><strong>Paragraph with inline styling</strong></p>
147
+
148
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span>
149
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>justification</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>RIGHT</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
150
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>foreground_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
151
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>font</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>ROMAN:Times</span><span class='tstring_end'>&quot;</span></span>
152
+ <span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> \
153
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Should you ever find yourself on a spacefaring vessel </span><span class='tstring_end'>&quot;</span></span>\
154
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>wearing RED shirt, take heed and be on guard, for danger </span><span class='tstring_end'>&quot;</span></span>\
155
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>is immanent and you are likely expendable among the crew.</span><span class='tstring_end'>&quot;</span></span>
156
+ </code></pre>
157
+ </li><li>
158
+ <p><strong>Paragraph with inline character styling</strong></p>
159
+
160
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
161
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Should you ever find yourself on a spacefaring vessel wearing a </span><span class='tstring_end'>&quot;</span></span>
162
+ <span class='id identifier rubyid_p'>p</span><span class='period'>.</span><span class='id identifier rubyid_apply'>apply</span><span class='lparen'>(</span>
163
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>foreground_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
164
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
165
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>italic</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='kw'>true</span><span class='comma'>,</span>
166
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>bold</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='kw'>true</span><span class='comma'>,</span>
167
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>SINGLE</span><span class='tstring_end'>&quot;</span></span>
168
+ <span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>red</span><span class='tstring_end'>&quot;</span></span>
169
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'> shirt, take heed and be on guard, for danger </span><span class='tstring_end'>&quot;</span></span>
170
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>is immanent and you are likely expendable among the crew.</span><span class='tstring_end'>&quot;</span></span>
171
+ <span class='kw'>end</span>
172
+ </code></pre>
173
+ </li></ul>
159
174
 
160
- <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>rrtf</span><span class='tstring_end'>&#39;</span></span>
161
- <span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>JSON</span><span class='tstring_end'>&#39;</span></span>
175
+ <h4 id="label-Hyperlinks">Hyperlinks</h4>
176
+
177
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
178
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Should you ever find yourself on a spacefaring vessel wearing a </span><span class='tstring_end'>&quot;</span></span>
179
+ <span class='id identifier rubyid_p'>p</span><span class='period'>.</span><span class='id identifier rubyid_apply'>apply</span><span class='lparen'>(</span>
180
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>foreground_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
181
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
182
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>italic</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='kw'>true</span><span class='comma'>,</span>
183
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>bold</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='kw'>true</span><span class='comma'>,</span>
184
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>underline</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>SINGLE</span><span class='tstring_end'>&quot;</span></span>
185
+ <span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_emphasis'>emphasis</span><span class='op'>|</span>
186
+ <span class='id identifier rubyid_emphasis'>emphasis</span><span class='period'>.</span><span class='id identifier rubyid_link'>link</span><span class='lparen'>(</span>
187
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>https://en.wikipedia.org/wiki/Redshirt_(character)</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>red shirt</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
188
+ <span class='kw'>end</span>
189
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>, take heed and be on guard, for danger </span><span class='tstring_end'>&quot;</span></span>
190
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>is immanent and you are likely expendable among the crew.</span><span class='tstring_end'>&quot;</span></span>
191
+ <span class='kw'>end</span>
192
+ </code></pre>
162
193
 
163
- <span class='id identifier rubyid_raw_styles'>raw_styles</span> <span class='op'>=</span> <span class='const'>JSON</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span> <span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>styles.json</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span>
194
+ <h4 id="label-Lists">Lists</h4>
164
195
 
165
- <span class='id identifier rubyid_rtf'>rtf</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="RRTF.html" title="RRTF (module)">RRTF</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="RRTF/Document.html" title="RRTF::Document (class)">Document</a></span></span><span class='period'>.</span><span class='id identifier rubyid_new'><span class='object_link'><a href="RRTF/Document.html#initialize-instance_method" title="RRTF::Document#initialize (method)">new</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>stylesheet</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_raw_styles'>raw_styles</span><span class='rparen'>)</span>
166
- <span class='id identifier rubyid_styles'>styles</span> <span class='op'>=</span> <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_stylesheet'>stylesheet</span><span class='period'>.</span><span class='id identifier rubyid_styles'>styles</span>
196
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_list'>list</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_l'>l</span><span class='op'>|</span>
197
+ <span class='id identifier rubyid_l'>l</span><span class='period'>.</span><span class='id identifier rubyid_item'>item</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_li'>li</span><span class='op'>|</span>
198
+ <span class='id identifier rubyid_li'>li</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Never venture into an ominous setting.</span><span class='tstring_end'>&quot;</span></span>
199
+ <span class='kw'>end</span>
200
+
201
+ <span class='id identifier rubyid_l'>l</span><span class='period'>.</span><span class='id identifier rubyid_item'>item</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_li'>li</span><span class='op'>|</span>
202
+ <span class='id identifier rubyid_li'>li</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Never attempt to disable an unknown entity. </span><span class='tstring_end'>&quot;</span></span>
203
+ <span class='id identifier rubyid_li'>li</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Get away quickly.</span><span class='tstring_end'>&quot;</span></span>
204
+ <span class='kw'>end</span>
167
205
 
168
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>TITLE</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>RedShirts 101</span><span class='tstring_end'>&quot;</span></span>
169
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
170
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Should you ever find yourself on a spacefaring vessel wearing a</span><span class='tstring_end'>&quot;</span></span>
171
- <span class='id identifier rubyid_p'>p</span><span class='period'>.</span><span class='id identifier rubyid_apply'>apply</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>EMPH</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'> red </span><span class='tstring_end'>&quot;</span></span>
172
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>shirt, take heed and be on guard, for danger is immanent and you are </span><span class='tstring_end'>&quot;</span></span>
173
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>likely expendable among the crew...</span><span class='tstring_end'>&quot;</span></span>
206
+ <span class='id identifier rubyid_l'>l</span><span class='period'>.</span><span class='id identifier rubyid_item'>item</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_li'>li</span><span class='op'>|</span>
207
+ <span class='id identifier rubyid_li'>li</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Never stand guard alone. Make certain at least three </span><span class='tstring_end'>&quot;</span></span>
208
+ <span class='id identifier rubyid_li'>li</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>other redshirts are present.</span><span class='tstring_end'>&quot;</span></span>
209
+ <span class='kw'>end</span>
174
210
  <span class='kw'>end</span>
175
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>H1</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>1. The Danger of Away Missions</span><span class='tstring_end'>&quot;</span></span>
176
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
177
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>If you&#39;re ever assigned an away mission, it&#39;s almost certain to be your doom. </span><span class='tstring_end'>&quot;</span></span>
178
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>The optimal strategy is to avoid away missions to begin with...</span><span class='tstring_end'>&quot;</span></span>
211
+ </code></pre>
212
+
213
+ <h4 id="label-Images">Images</h4>
214
+
215
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_image'>image</span><span class='lparen'>(</span><span class='const'>DIR</span><span class='op'>+</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>/resources/images/redshirt.png</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
216
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>2in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='comment'># can also set &quot;height&quot;
217
+ </span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>sizing_mode</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>FIX_ASPECT_RATIO</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='comment'># can also be &quot;ABSOLUTE&quot;
218
+ </span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>border</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
219
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>sides</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>ALL</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
220
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#ff0000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
221
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>line_type</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>DOT</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
222
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>5pt</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
223
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>spacing</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>12pt</span><span class='tstring_end'>&quot;</span></span>
224
+ <span class='rbrace'>}</span>
225
+ <span class='rparen'>)</span>
226
+ </code></pre>
227
+
228
+ <h4 id="label-Shapes">Shapes</h4>
229
+ <ul><li>
230
+ <p><strong>Basic shapes</strong></p>
231
+
232
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_geometry'>geometry</span><span class='lparen'>(</span>
233
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>RECTANGLE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
234
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>fill_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#cccccc</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
235
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>top</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='int'>0</span><span class='comma'>,</span>
236
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>left</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='int'>0</span><span class='comma'>,</span>
237
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>2in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
238
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>height</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>2in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
239
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>horizontal_reference</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>PAGE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
240
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>vertical_reference</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>PAGE</span><span class='tstring_end'>&quot;</span></span>
241
+ <span class='rparen'>)</span>
242
+ </code></pre>
243
+ </li><li>
244
+ <p><strong>Text boxes</strong></p>
245
+
246
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_geometry'>geometry</span><span class='lparen'>(</span>
247
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>TEXT_BOX</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
248
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>line_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#000000</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
249
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>line_width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>3pt</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
250
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>top</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>5in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
251
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>left</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>2.5in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
252
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
253
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>height</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
254
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>horizontal_reference</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>PAGE</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
255
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>vertical_reference</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>PAGE</span><span class='tstring_end'>&quot;</span></span>
256
+ <span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_box'>box</span><span class='op'>|</span>
257
+ <span class='id identifier rubyid_box'>box</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
258
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Should you ever find yourself on a spacefaring vessel wearing a </span><span class='tstring_end'>&quot;</span></span>
259
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>RED</span><span class='tstring_end'>&quot;</span></span>
260
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'> shirt, take heed and be on guard, for danger </span><span class='tstring_end'>&quot;</span></span>
261
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>is immanent and you are likely expendable among the crew.</span><span class='tstring_end'>&quot;</span></span>
262
+ <span class='kw'>end</span>
179
263
  <span class='kw'>end</span>
180
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>H1</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>2. Avoiding High-Ranking Officers</span><span class='tstring_end'>&quot;</span></span>
181
- <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>BODY</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
182
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>You&#39;re likely to notice an influx of unfortunate outcomes around </span><span class='tstring_end'>&quot;</span></span>
183
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>certain high-ranking officers. Its to your advantage to quickly identify and </span><span class='tstring_end'>&quot;</span></span>
184
- <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>avoid these officers...</span><span class='tstring_end'>&quot;</span></span>
264
+ </code></pre>
265
+ </li><li>
266
+ <p><strong>Custom shapes</strong></p>
267
+
268
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_geometry'>geometry</span><span class='lparen'>(</span>
269
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>type</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>CUSTOM</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
270
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>top</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='int'>0</span><span class='comma'>,</span>
271
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>left</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>4in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
272
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>width</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
273
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>height</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span>
274
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>path</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='lbracket'>[</span>
275
+ <span class='comment'># points are relative to the upper left corner of the shape as
276
+ </span> <span class='comment'># determined by &quot;top&quot;/&quot;left&quot;/&quot;bottom&quot;/&quot;right&quot;/&quot;width&quot;/&quot;height&quot;
277
+ </span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>START_AT</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='int'>0</span><span class='comma'>,</span><span class='int'>0</span><span class='rbracket'>]</span> <span class='rbracket'>]</span><span class='comma'>,</span>
278
+ <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>LINE_TO</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2in</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='int'>0</span><span class='rbracket'>]</span> <span class='rbracket'>]</span><span class='comma'>,</span>
279
+ <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>CUBIC_BEZIER_TO</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='int'>0</span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>1.5in</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>3in</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span> <span class='rbracket'>]</span><span class='comma'>,</span>
280
+ <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>LINE_TO</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='lbracket'>[</span><span class='int'>0</span><span class='comma'>,</span> <span class='int'>0</span><span class='rbracket'>]</span> <span class='rbracket'>]</span><span class='comma'>,</span>
281
+ <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>CLOSE_PATH</span><span class='tstring_end'>&quot;</span></span> <span class='rbracket'>]</span><span class='comma'>,</span>
282
+ <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>END</span><span class='tstring_end'>&quot;</span></span> <span class='rbracket'>]</span>
283
+ <span class='rbracket'>]</span><span class='comma'>,</span>
284
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>fill_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#00cc00</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
285
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>line_color</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>#000099</span><span class='tstring_end'>&#39;</span></span>
286
+ <span class='rparen'>)</span>
287
+ </code></pre>
288
+ </li></ul>
289
+
290
+ <h4 id="label-Stylesheet">Stylesheet</h4>
291
+
292
+ <pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_raw_styles'>raw_styles</span> <span class='op'>=</span> <span class='const'>JSON</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span> <span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='const'>DIR</span><span class='op'>+</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>/resources/json/redshirt_styles.json</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span>
293
+ <span class='id identifier rubyid_rtf'>rtf</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="RRTF.html" title="RRTF (module)">RRTF</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="RRTF/Document.html" title="RRTF::Document (class)">Document</a></span></span><span class='period'>.</span><span class='id identifier rubyid_new'><span class='object_link'><a href="RRTF/Document.html#initialize-instance_method" title="RRTF::Document#initialize (method)">new</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>stylesheet</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_raw_styles'>raw_styles</span><span class='rparen'>)</span>
294
+ <span class='id identifier rubyid_styles'>styles</span> <span class='op'>=</span> <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_stylesheet'>stylesheet</span><span class='period'>.</span><span class='id identifier rubyid_styles'>styles</span>
295
+
296
+ <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>TITLE</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Redshirt Pocket Guide</span><span class='tstring_end'>&quot;</span></span>
297
+ <span class='id identifier rubyid_rtf'>rtf</span><span class='period'>.</span><span class='id identifier rubyid_paragraph'>paragraph</span><span class='lparen'>(</span><span class='id identifier rubyid_styles'>styles</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SUBTITLE</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_p'>p</span><span class='op'>|</span>
298
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>3</span><span class='tstring_end'>&quot;</span></span>
299
+ <span class='id identifier rubyid_p'>p</span><span class='period'>.</span><span class='id identifier rubyid_apply'>apply</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>superscript</span><span class='tstring_end'>&quot;</span></span> <span class='op'>=&gt;</span> <span class='kw'>true</span><span class='rparen'>)</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>rd</span><span class='tstring_end'>&quot;</span></span>
300
+ <span class='id identifier rubyid_p'>p</span> <span class='op'>&lt;&lt;</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'> Edition</span><span class='tstring_end'>&quot;</span></span>
185
301
  <span class='kw'>end</span>
186
302
  </code></pre>
187
303
 
188
- <p><img src="examples/01_mac_word15_36.png"></p>
304
+ <h2 id="label-TODO">TODO</h2>
305
+ <ul><li>
306
+ <p>Develop rspec examples to replace the unit tests for the classes in the
307
+ original ifad-rtf gem.</p>
308
+ </li><li>
309
+ <p>Make existing comments yard friendly.</p>
310
+ </li><li>
311
+ <p>Refactor interface between styles and colour/font tables: right now
312
+ AnonymousStyle defines push_colours and push_fonts methods that are called
313
+ by CommandNode#paragraph, CommandNode#apply, and ImageNode#initialize
314
+ (these actions should rather be taken when a style is created or updated).</p>
315
+ </li><li>
316
+ <p>Fix list and nested list formatting issues (alignment).</p>
317
+ </li><li>
318
+ <p>Add support for tables.</p>
319
+ </li></ul>
189
320
 
190
321
  <h2 id="label-Development">Development</h2>
191
322
 
@@ -213,7 +344,7 @@ the <a href="http://opensource.org/licenses/MIT">MIT License</a>.</p>
213
344
  </div></div>
214
345
 
215
346
  <div id="footer">
216
- Generated on Mon Jul 24 15:48:59 2017 by
347
+ Generated on Mon Jul 31 21:48:56 2017 by
217
348
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
218
349
  0.9.9 (ruby-2.3.3).
219
350
  </div>
@@ -45,6 +45,14 @@
45
45
 
46
46
 
47
47
  <li class="odd ">
48
+ <div class="item">
49
+ <span class='object_link'><a href="RRTF/GeometryNode.html#<<-instance_method" title="RRTF::GeometryNode#&lt;&lt; (method)">#&lt;&lt;</a></span>
50
+ <small>RRTF::GeometryNode</small>
51
+ </div>
52
+ </li>
53
+
54
+
55
+ <li class="even ">
48
56
  <div class="item">
49
57
  <span class='object_link'><a href="RRTF/CommandNode.html#<<-instance_method" title="RRTF::CommandNode#&lt;&lt; (method)">#&lt;&lt;</a></span>
50
58
  <small>RRTF::CommandNode</small>
@@ -52,6 +60,14 @@
52
60
  </li>
53
61
 
54
62
 
63
+ <li class="odd ">
64
+ <div class="item">
65
+ <span class='object_link'><a href="RRTF/Page/Size.html#==-instance_method" title="RRTF::Page::Size#== (method)">#==</a></span>
66
+ <small>RRTF::Page::Size</small>
67
+ </div>
68
+ </li>
69
+
70
+
55
71
  <li class="even ">
56
72
  <div class="item">
57
73
  <span class='object_link'><a href="RRTF/Font.html#==-instance_method" title="RRTF::Font#== (method)">#==</a></span>
@@ -70,8 +86,8 @@
70
86
 
71
87
  <li class="even ">
72
88
  <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>
89
+ <span class='object_link'><a href="RRTF/Page/Margin.html#==-instance_method" title="RRTF::Page::Margin#== (method)">#==</a></span>
90
+ <small>RRTF::Page::Margin</small>
75
91
  </div>
76
92
  </li>
77
93
 
@@ -94,13 +110,21 @@
94
110
 
95
111
  <li class="odd ">
96
112
  <div class="item">
97
- <span class='object_link'><a href="RRTF/ColourTable.html#add-instance_method" title="RRTF::ColourTable#add (method)">#add</a></span>
113
+ <span class='object_link'><a href="RRTF/ColourTable.html#[]-instance_method" title="RRTF::ColourTable#[] (method)">#[]</a></span>
98
114
  <small>RRTF::ColourTable</small>
99
115
  </div>
100
116
  </li>
101
117
 
102
118
 
103
119
  <li class="even ">
120
+ <div class="item">
121
+ <span class='object_link'><a href="RRTF/ColourTable.html#add-instance_method" title="RRTF::ColourTable#add (method)">#add</a></span>
122
+ <small>RRTF::ColourTable</small>
123
+ </div>
124
+ </li>
125
+
126
+
127
+ <li class="odd ">
104
128
  <div class="item">
105
129
  <span class='object_link'><a href="RRTF/FontTable.html#add-instance_method" title="RRTF::FontTable#add (method)">#add</a></span>
106
130
  <small>RRTF::FontTable</small>
@@ -108,7 +132,7 @@
108
132
  </li>
109
133
 
110
134
 
111
- <li class="odd ">
135
+ <li class="even ">
112
136
  <div class="item">
113
137
  <span class='object_link'><a href="RRTF/Stylesheet.html#add_style-instance_method" title="RRTF::Stylesheet#add_style (method)">#add_style</a></span>
114
138
  <small>RRTF::Stylesheet</small>
@@ -116,7 +140,7 @@
116
140
  </li>
117
141
 
118
142
 
119
- <li class="even ">
143
+ <li class="odd ">
120
144
  <div class="item">
121
145
  <span class='object_link'><a href="RRTF/Stylesheet.html#add_styles-instance_method" title="RRTF::Stylesheet#add_styles (method)">#add_styles</a></span>
122
146
  <small>RRTF::Stylesheet</small>
@@ -124,7 +148,7 @@
124
148
  </li>
125
149
 
126
150
 
127
- <li class="odd ">
151
+ <li class="even ">
128
152
  <div class="item">
129
153
  <span class='object_link'><a href="RRTF/Style.html#additive-instance_method" title="RRTF::Style#additive (method)">#additive</a></span>
130
154
  <small>RRTF::Style</small>
@@ -132,7 +156,7 @@
132
156
  </li>
133
157
 
134
158
 
135
- <li class="even ">
159
+ <li class="odd ">
136
160
  <div class="item">
137
161
  <span class='object_link'><a href="RRTF/TextNode.html#append-instance_method" title="RRTF::TextNode#append (method)">#append</a></span>
138
162
  <small>RRTF::TextNode</small>
@@ -140,7 +164,7 @@
140
164
  </li>
141
165
 
142
166
 
143
- <li class="odd ">
167
+ <li class="even ">
144
168
  <div class="item">
145
169
  <span class='object_link'><a href="RRTF/CommandNode.html#apply-instance_method" title="RRTF::CommandNode#apply (method)">#apply</a></span>
146
170
  <small>RRTF::CommandNode</small>
@@ -148,7 +172,7 @@
148
172
  </li>
149
173
 
150
174
 
151
- <li class="even ">
175
+ <li class="odd ">
152
176
  <div class="item">
153
177
  <span class='object_link'><a href="RRTF/Information.html#author-instance_method" title="RRTF::Information#author (method)">#author</a></span>
154
178
  <small>RRTF::Information</small>
@@ -156,7 +180,7 @@
156
180
  </li>
157
181
 
158
182
 
159
- <li class="odd ">
183
+ <li class="even ">
160
184
  <div class="item">
161
185
  <span class='object_link'><a href="RRTF/Style.html#auto_update-instance_method" title="RRTF::Style#auto_update (method)">#auto_update</a></span>
162
186
  <small>RRTF::Style</small>
@@ -164,14 +188,6 @@
164
188
  </li>
165
189
 
166
190
 
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
191
  <li class="odd ">
176
192
  <div class="item">
177
193
  <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>
@@ -198,48 +214,48 @@
198
214
 
199
215
  <li class="even ">
200
216
  <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>
217
+ <span class='object_link'><a href="RRTF/PageFormatting.html#body_height-instance_method" title="RRTF::PageFormatting#body_height (method)">#body_height</a></span>
218
+ <small>RRTF::PageFormatting</small>
203
219
  </div>
204
220
  </li>
205
221
 
206
222
 
207
223
  <li class="odd ">
208
224
  <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>
225
+ <span class='object_link'><a href="RRTF/Document.html#body_width-instance_method" title="RRTF::Document#body_width (method)">#body_width</a></span>
226
+ <small>RRTF::Document</small>
211
227
  </div>
212
228
  </li>
213
229
 
214
230
 
215
231
  <li class="even ">
216
232
  <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>
233
+ <span class='object_link'><a href="RRTF/PageFormatting.html#body_width-instance_method" title="RRTF::PageFormatting#body_width (method)">#body_width</a></span>
234
+ <small>RRTF::PageFormatting</small>
219
235
  </div>
220
236
  </li>
221
237
 
222
238
 
223
239
  <li class="odd ">
224
240
  <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>
241
+ <span class='object_link'><a href="RRTF/ImageNode.html#border-instance_method" title="RRTF::ImageNode#border (method)">#border</a></span>
242
+ <small>RRTF::ImageNode</small>
227
243
  </div>
228
244
  </li>
229
245
 
230
246
 
231
247
  <li class="even ">
232
248
  <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>
249
+ <span class='object_link'><a href="RRTF/BorderFormatting.html#border_formatting_to_rtf-instance_method" title="RRTF::BorderFormatting#border_formatting_to_rtf (method)">#border_formatting_to_rtf</a></span>
250
+ <small>RRTF::BorderFormatting</small>
235
251
  </div>
236
252
  </li>
237
253
 
238
254
 
239
255
  <li class="odd ">
240
256
  <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>
257
+ <span class='object_link'><a href="RRTF/TableCellNode.html#border_width=-instance_method" title="RRTF::TableCellNode#border_width= (method)">#border_width=</a></span>
258
+ <small>RRTF::TableCellNode</small>
243
259
  </div>
244
260
  </li>
245
261
 
@@ -254,15 +270,15 @@
254
270
 
255
271
  <li class="odd ">
256
272
  <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>
273
+ <span class='object_link'><a href="RRTF/TableRowNode.html#border_width=-instance_method" title="RRTF::TableRowNode#border_width= (method)">#border_width=</a></span>
274
+ <small>RRTF::TableRowNode</small>
259
275
  </div>
260
276
  </li>
261
277
 
262
278
 
263
279
  <li class="even ">
264
280
  <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>
281
+ <span class='object_link'><a href="RRTF/TableCellNode.html#border_widths-instance_method" title="RRTF::TableCellNode#border_widths (method)">#border_widths</a></span>
266
282
  <small>RRTF::TableCellNode</small>
267
283
  </div>
268
284
  </li>
@@ -270,24 +286,24 @@
270
286
 
271
287
  <li class="odd ">
272
288
  <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>
289
+ <span class='object_link'><a href="RRTF/Page/Margin.html#bottom-instance_method" title="RRTF::Page::Margin#bottom (method)">#bottom</a></span>
290
+ <small>RRTF::Page::Margin</small>
275
291
  </div>
276
292
  </li>
277
293
 
278
294
 
279
295
  <li class="even ">
280
296
  <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>
297
+ <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>
298
+ <small>RRTF::TableCellNode</small>
283
299
  </div>
284
300
  </li>
285
301
 
286
302
 
287
303
  <li class="odd ">
288
304
  <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>
305
+ <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>
306
+ <small>RRTF::TableCellNode</small>
291
307
  </div>
292
308
  </li>
293
309
 
@@ -333,14 +349,6 @@
333
349
 
334
350
 
335
351
  <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
352
  <div class="item">
345
353
  <span class='object_link'><a href="RRTF/Document.html#colours-instance_method" title="RRTF::Document#colours (method)">#colours</a></span>
346
354
  <small>RRTF::Document</small>
@@ -348,7 +356,7 @@
348
356
  </li>
349
357
 
350
358
 
351
- <li class="odd ">
359
+ <li class="even ">
352
360
  <div class="item">
353
361
  <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
362
  <small>RRTF::TableNode</small>
@@ -356,7 +364,7 @@
356
364
  </li>
357
365
 
358
366
 
359
- <li class="even ">
367
+ <li class="odd ">
360
368
  <div class="item">
361
369
  <span class='object_link'><a href="RRTF/TableNode.html#columns-instance_method" title="RRTF::TableNode#columns (method)">#columns</a></span>
362
370
  <small>RRTF::TableNode</small>
@@ -364,7 +372,7 @@
364
372
  </li>
365
373
 
366
374
 
367
- <li class="odd ">
375
+ <li class="even ">
368
376
  <div class="item">
369
377
  <span class='object_link'><a href="RRTF/Information.html#comments-instance_method" title="RRTF::Information#comments (method)">#comments</a></span>
370
378
  <small>RRTF::Information</small>
@@ -372,7 +380,7 @@
372
380
  </li>
373
381
 
374
382
 
375
- <li class="even ">
383
+ <li class="odd ">
376
384
  <div class="item">
377
385
  <span class='object_link'><a href="RRTF/Information.html#company-instance_method" title="RRTF::Information#company (method)">#company</a></span>
378
386
  <small>RRTF::Information</small>
@@ -380,7 +388,7 @@
380
388
  </li>
381
389
 
382
390
 
383
- <li class="odd ">
391
+ <li class="even ">
384
392
  <div class="item">
385
393
  <span class='object_link'><a href="RRTF/Utilities.html#constantize-class_method" title="RRTF::Utilities.constantize (method)">constantize</a></span>
386
394
  <small>RRTF::Utilities</small>
@@ -388,7 +396,7 @@
388
396
  </li>
389
397
 
390
398
 
391
- <li class="even ">
399
+ <li class="odd ">
392
400
  <div class="item">
393
401
  <span class='object_link'><a href="RRTF/Information.html#created-instance_method" title="RRTF::Information#created (method)">#created</a></span>
394
402
  <small>RRTF::Information</small>
@@ -396,7 +404,7 @@
396
404
  </li>
397
405
 
398
406
 
399
- <li class="odd ">
407
+ <li class="even ">
400
408
  <div class="item">
401
409
  <span class='object_link'><a href="RRTF/Document.html#default_font-instance_method" title="RRTF::Document#default_font (method)">#default_font</a></span>
402
410
  <small>RRTF::Document</small>
@@ -404,7 +412,7 @@
404
412
  </li>
405
413
 
406
414
 
407
- <li class="even ">
415
+ <li class="odd ">
408
416
  <div class="item">
409
417
  <span class='object_link'><a href="RRTF/Document.html#default_font=-instance_method" title="RRTF::Document#default_font= (method)">#default_font=</a></span>
410
418
  <small>RRTF::Document</small>
@@ -412,7 +420,7 @@
412
420
  </li>
413
421
 
414
422
 
415
- <li class="odd ">
423
+ <li class="even ">
416
424
  <div class="item">
417
425
  <span class='object_link'><a href="RRTF/ImageNode.html#displayed_height-instance_method" title="RRTF::ImageNode#displayed_height (method)">#displayed_height</a></span>
418
426
  <small>RRTF::ImageNode</small>
@@ -420,7 +428,7 @@
420
428
  </li>
421
429
 
422
430
 
423
- <li class="even ">
431
+ <li class="odd ">
424
432
  <div class="item">
425
433
  <span class='object_link'><a href="RRTF/ImageNode.html#displayed_width-instance_method" title="RRTF::ImageNode#displayed_width (method)">#displayed_width</a></span>
426
434
  <small>RRTF::ImageNode</small>
@@ -428,7 +436,7 @@
428
436
  </li>
429
437
 
430
438
 
431
- <li class="odd ">
439
+ <li class="even ">
432
440
  <div class="item">
433
441
  <span class='object_link'><a href="RRTF/Stylesheet.html#document-instance_method" title="RRTF::Stylesheet#document (method)">#document</a></span>
434
442
  <small>RRTF::Stylesheet</small>
@@ -436,6 +444,14 @@
436
444
  </li>
437
445
 
438
446
 
447
+ <li class="odd ">
448
+ <div class="item">
449
+ <span class='object_link'><a href="RRTF/DocumentFormatting.html#document_formatting_to_rtf-instance_method" title="RRTF::DocumentFormatting#document_formatting_to_rtf (method)">#document_formatting_to_rtf</a></span>
450
+ <small>RRTF::DocumentFormatting</small>
451
+ </div>
452
+ </li>
453
+
454
+
439
455
  <li class="even ">
440
456
  <div class="item">
441
457
  <span class='object_link'><a href="RRTF/ColourTable.html#each-instance_method" title="RRTF::ColourTable#each (method)">#each</a></span>
@@ -486,23 +502,23 @@
486
502
 
487
503
  <li class="even ">
488
504
  <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>
505
+ <span class='object_link'><a href="RRTF/Converters/HTML/Helpers.html#font-instance_method" title="RRTF::Converters::HTML::Helpers#font (method)">#font</a></span>
506
+ <small>RRTF::Converters::HTML::Helpers</small>
491
507
  </div>
492
508
  </li>
493
509
 
494
510
 
495
511
  <li class="odd ">
496
512
  <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>
513
+ <span class='object_link'><a href="RRTF/Document.html#fonts-instance_method" title="RRTF::Document#fonts (method)">#fonts</a></span>
514
+ <small>RRTF::Document</small>
499
515
  </div>
500
516
  </li>
501
517
 
502
518
 
503
519
  <li class="even ">
504
520
  <div class="item">
505
- <span class='object_link'><a href="RRTF/Document.html#fonts-instance_method" title="RRTF::Document#fonts (method)">#fonts</a></span>
521
+ <span class='object_link'><a href="RRTF/Document.html#footer-instance_method" title="RRTF::Document#footer (method)">#footer</a></span>
506
522
  <small>RRTF::Document</small>
507
523
  </div>
508
524
  </li>
@@ -510,7 +526,7 @@
510
526
 
511
527
  <li class="odd ">
512
528
  <div class="item">
513
- <span class='object_link'><a href="RRTF/Document.html#footer-instance_method" title="RRTF::Document#footer (method)">#footer</a></span>
529
+ <span class='object_link'><a href="RRTF/Document.html#footer=-instance_method" title="RRTF::Document#footer= (method)">#footer=</a></span>
514
530
  <small>RRTF::Document</small>
515
531
  </div>
516
532
  </li>
@@ -518,8 +534,8 @@
518
534
 
519
535
  <li class="even ">
520
536
  <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>
537
+ <span class='object_link'><a href="RRTF/HeaderNode.html#footnote-instance_method" title="RRTF::HeaderNode#footnote (method)">#footnote</a></span>
538
+ <small>RRTF::HeaderNode</small>
523
539
  </div>
524
540
  </li>
525
541
 
@@ -542,21 +558,29 @@
542
558
 
543
559
  <li class="odd ">
544
560
  <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>
561
+ <span class='object_link'><a href="RRTF/Page/Size.html#from_string-class_method" title="RRTF::Page::Size.from_string (method)">from_string</a></span>
562
+ <small>RRTF::Page::Size</small>
547
563
  </div>
548
564
  </li>
549
565
 
550
566
 
551
567
  <li class="even ">
552
568
  <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>
569
+ <span class='object_link'><a href="RRTF/Page/Margin.html#from_string-class_method" title="RRTF::Page::Margin.from_string (method)">from_string</a></span>
570
+ <small>RRTF::Page::Margin</small>
555
571
  </div>
556
572
  </li>
557
573
 
558
574
 
559
575
  <li class="odd ">
576
+ <div class="item">
577
+ <span class='object_link'><a href="RRTF/Font.html#from_string-class_method" title="RRTF::Font.from_string (method)">from_string</a></span>
578
+ <small>RRTF::Font</small>
579
+ </div>
580
+ </li>
581
+
582
+
583
+ <li class="even ">
560
584
  <div class="item">
561
585
  <span class='object_link'><a href="RRTF/Colour.html#from_string-class_method" title="RRTF::Colour.from_string (method)">from_string</a></span>
562
586
  <small>RRTF::Colour</small>
@@ -564,10 +588,18 @@
564
588
  </li>
565
589
 
566
590
 
591
+ <li class="odd ">
592
+ <div class="item">
593
+ <span class='object_link'><a href="RRTF/CommandNode.html#geometry-instance_method" title="RRTF::CommandNode#geometry (method)">#geometry</a></span>
594
+ <small>RRTF::CommandNode</small>
595
+ </div>
596
+ </li>
597
+
598
+
567
599
  <li class="even ">
568
600
  <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>
601
+ <span class='object_link'><a href="RRTF/GeometryNode.html#geometry-instance_method" title="RRTF::GeometryNode#geometry (method)">#geometry</a></span>
602
+ <small>RRTF::GeometryNode</small>
571
603
  </div>
572
604
  </li>
573
605
 
@@ -590,23 +622,23 @@
590
622
 
591
623
  <li class="odd ">
592
624
  <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>
625
+ <span class='object_link'><a href="RRTF/Style.html#handle-instance_method" title="RRTF::Style#handle (method)">#handle</a></span>
626
+ <small>RRTF::Style</small>
595
627
  </div>
596
628
  </li>
597
629
 
598
630
 
599
631
  <li class="even ">
600
632
  <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>
633
+ <span class='object_link'><a href="RRTF/Document.html#header-instance_method" title="RRTF::Document#header (method)">#header</a></span>
634
+ <small>RRTF::Document</small>
603
635
  </div>
604
636
  </li>
605
637
 
606
638
 
607
639
  <li class="odd ">
608
640
  <div class="item">
609
- <span class='object_link'><a href="RRTF/Document.html#header-instance_method" title="RRTF::Document#header (method)">#header</a></span>
641
+ <span class='object_link'><a href="RRTF/Document.html#header=-instance_method" title="RRTF::Document#header= (method)">#header=</a></span>
610
642
  <small>RRTF::Document</small>
611
643
  </div>
612
644
  </li>
@@ -614,8 +646,8 @@
614
646
 
615
647
  <li class="even ">
616
648
  <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>
649
+ <span class='object_link'><a href="RRTF/Page/Size.html#height-instance_method" title="RRTF::Page::Size#height (method)">#height</a></span>
650
+ <small>RRTF::Page::Size</small>
619
651
  </div>
620
652
  </li>
621
653
 
@@ -630,16 +662,16 @@
630
662
 
631
663
  <li class="even ">
632
664
  <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>
665
+ <span class='object_link'><a href="RRTF/Style.html#hidden-instance_method" title="RRTF::Style#hidden (method)">#hidden</a></span>
666
+ <small>RRTF::Style</small>
635
667
  </div>
636
668
  </li>
637
669
 
638
670
 
639
671
  <li class="odd ">
640
672
  <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>
673
+ <span class='object_link'><a href="RRTF/ListLevel.html#id-instance_method" title="RRTF::ListLevel#id (method)">#id</a></span>
674
+ <small>RRTF::ListLevel</small>
643
675
  </div>
644
676
  </li>
645
677
 
@@ -654,21 +686,45 @@
654
686
 
655
687
  <li class="odd ">
656
688
  <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>
689
+ <span class='object_link'><a href="RRTF/CommandNode.html#image-instance_method" title="RRTF::CommandNode#image (method)">#image</a></span>
690
+ <small>RRTF::CommandNode</small>
659
691
  </div>
660
692
  </li>
661
693
 
662
694
 
663
695
  <li class="even ">
664
696
  <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>
697
+ <span class='object_link'><a href="RRTF/PositionFormatting.html#included-class_method" title="RRTF::PositionFormatting.included (method)">included</a></span>
698
+ <small>RRTF::PositionFormatting</small>
699
+ </div>
700
+ </li>
701
+
702
+
703
+ <li class="odd ">
704
+ <div class="item">
705
+ <span class='object_link'><a href="RRTF/DocumentFormatting.html#included-class_method" title="RRTF::DocumentFormatting.included (method)">included</a></span>
706
+ <small>RRTF::DocumentFormatting</small>
707
+ </div>
708
+ </li>
709
+
710
+
711
+ <li class="even ">
712
+ <div class="item">
713
+ <span class='object_link'><a href="RRTF/BorderFormatting.html#included-class_method" title="RRTF::BorderFormatting.included (method)">included</a></span>
714
+ <small>RRTF::BorderFormatting</small>
667
715
  </div>
668
716
  </li>
669
717
 
670
718
 
671
719
  <li class="odd ">
720
+ <div class="item">
721
+ <span class='object_link'><a href="RRTF/ShadingFormatting.html#included-class_method" title="RRTF::ShadingFormatting.included (method)">included</a></span>
722
+ <small>RRTF::ShadingFormatting</small>
723
+ </div>
724
+ </li>
725
+
726
+
727
+ <li class="even ">
672
728
  <div class="item">
673
729
  <span class='object_link'><a href="RRTF/CharacterFormatting.html#included-class_method" title="RRTF::CharacterFormatting.included (method)">included</a></span>
674
730
  <small>RRTF::CharacterFormatting</small>
@@ -676,7 +732,7 @@
676
732
  </li>
677
733
 
678
734
 
679
- <li class="even ">
735
+ <li class="odd ">
680
736
  <div class="item">
681
737
  <span class='object_link'><a href="RRTF/ParagraphFormatting.html#included-class_method" title="RRTF::ParagraphFormatting.included (method)">included</a></span>
682
738
  <small>RRTF::ParagraphFormatting</small>
@@ -684,6 +740,14 @@
684
740
  </li>
685
741
 
686
742
 
743
+ <li class="even ">
744
+ <div class="item">
745
+ <span class='object_link'><a href="RRTF/PageFormatting.html#included-class_method" title="RRTF::PageFormatting.included (method)">included</a></span>
746
+ <small>RRTF::PageFormatting</small>
747
+ </div>
748
+ </li>
749
+
750
+
687
751
  <li class="odd ">
688
752
  <div class="item">
689
753
  <span class='object_link'><a href="RRTF/ListLevel.html#indent-instance_method" title="RRTF::ListLevel#indent (method)">#indent</a></span>
@@ -718,8 +782,8 @@
718
782
 
719
783
  <li class="odd ">
720
784
  <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>
785
+ <span class='object_link'><a href="RRTF/ShadingStyle.html#initialize-instance_method" title="RRTF::ShadingStyle#initialize (method)">#initialize</a></span>
786
+ <small>RRTF::ShadingStyle</small>
723
787
  </div>
724
788
  </li>
725
789
 
@@ -734,24 +798,24 @@
734
798
 
735
799
  <li class="odd ">
736
800
  <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>
801
+ <span class='object_link'><a href="RRTF/GeometryProperties.html#initialize-instance_method" title="RRTF::GeometryProperties#initialize (method)">#initialize</a></span>
802
+ <small>RRTF::GeometryProperties</small>
739
803
  </div>
740
804
  </li>
741
805
 
742
806
 
743
807
  <li class="even ">
744
808
  <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>
809
+ <span class='object_link'><a href="RRTF/DocumentProperties.html#initialize-instance_method" title="RRTF::DocumentProperties#initialize (method)">#initialize</a></span>
810
+ <small>RRTF::DocumentProperties</small>
747
811
  </div>
748
812
  </li>
749
813
 
750
814
 
751
815
  <li class="odd ">
752
816
  <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>
817
+ <span class='object_link'><a href="RRTF/FontTable.html#initialize-instance_method" title="RRTF::FontTable#initialize (method)">#initialize</a></span>
818
+ <small>RRTF::FontTable</small>
755
819
  </div>
756
820
  </li>
757
821
 
@@ -766,32 +830,32 @@
766
830
 
767
831
  <li class="odd ">
768
832
  <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>
833
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#initialize-instance_method" title="RRTF::ParagraphStyle#initialize (method)">#initialize</a></span>
834
+ <small>RRTF::ParagraphStyle</small>
771
835
  </div>
772
836
  </li>
773
837
 
774
838
 
775
839
  <li class="even ">
776
840
  <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>
841
+ <span class='object_link'><a href="RRTF/ListMarker.html#initialize-instance_method" title="RRTF::ListMarker#initialize (method)">#initialize</a></span>
842
+ <small>RRTF::ListMarker</small>
779
843
  </div>
780
844
  </li>
781
845
 
782
846
 
783
847
  <li class="odd ">
784
848
  <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>
849
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#initialize-instance_method" title="RRTF::CharacterStyle#initialize (method)">#initialize</a></span>
850
+ <small>RRTF::CharacterStyle</small>
787
851
  </div>
788
852
  </li>
789
853
 
790
854
 
791
855
  <li class="even ">
792
856
  <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>
857
+ <span class='object_link'><a href="RRTF/ListTemplate.html#initialize-instance_method" title="RRTF::ListTemplate#initialize (method)">#initialize</a></span>
858
+ <small>RRTF::ListTemplate</small>
795
859
  </div>
796
860
  </li>
797
861
 
@@ -806,48 +870,48 @@
806
870
 
807
871
  <li class="even ">
808
872
  <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>
873
+ <span class='object_link'><a href="RRTF/Colour.html#initialize-instance_method" title="RRTF::Colour#initialize (method)">#initialize</a></span>
874
+ <small>RRTF::Colour</small>
811
875
  </div>
812
876
  </li>
813
877
 
814
878
 
815
879
  <li class="odd ">
816
880
  <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>
881
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#initialize-instance_method" title="RRTF::AnonymousStyle#initialize (method)">#initialize</a></span>
882
+ <small>RRTF::AnonymousStyle</small>
819
883
  </div>
820
884
  </li>
821
885
 
822
886
 
823
887
  <li class="even ">
824
888
  <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>
889
+ <span class='object_link'><a href="RRTF/ColourTable.html#initialize-instance_method" title="RRTF::ColourTable#initialize (method)">#initialize</a></span>
890
+ <small>RRTF::ColourTable</small>
827
891
  </div>
828
892
  </li>
829
893
 
830
894
 
831
895
  <li class="odd ">
832
896
  <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>
897
+ <span class='object_link'><a href="RRTF/PositionStyle.html#initialize-instance_method" title="RRTF::PositionStyle#initialize (method)">#initialize</a></span>
898
+ <small>RRTF::PositionStyle</small>
835
899
  </div>
836
900
  </li>
837
901
 
838
902
 
839
903
  <li class="even ">
840
904
  <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>
905
+ <span class='object_link'><a href="RRTF/Node.html#initialize-instance_method" title="RRTF::Node#initialize (method)">#initialize</a></span>
906
+ <small>RRTF::Node</small>
843
907
  </div>
844
908
  </li>
845
909
 
846
910
 
847
911
  <li class="odd ">
848
912
  <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>
913
+ <span class='object_link'><a href="RRTF/Page/Size.html#initialize-instance_method" title="RRTF::Page::Size#initialize (method)">#initialize</a></span>
914
+ <small>RRTF::Page::Size</small>
851
915
  </div>
852
916
  </li>
853
917
 
@@ -862,101 +926,109 @@
862
926
 
863
927
  <li class="odd ">
864
928
  <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>
929
+ <span class='object_link'><a href="RRTF/Stylesheet.html#initialize-instance_method" title="RRTF::Stylesheet#initialize (method)">#initialize</a></span>
930
+ <small>RRTF::Stylesheet</small>
867
931
  </div>
868
932
  </li>
869
933
 
870
934
 
871
935
  <li class="even ">
872
936
  <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>
937
+ <span class='object_link'><a href="RRTF/TableCellNode.html#initialize-instance_method" title="RRTF::TableCellNode#initialize (method)">#initialize</a></span>
938
+ <small>RRTF::TableCellNode</small>
875
939
  </div>
876
940
  </li>
877
941
 
878
942
 
879
943
  <li class="odd ">
880
944
  <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>
945
+ <span class='object_link'><a href="RRTF/Information.html#initialize-instance_method" title="RRTF::Information#initialize (method)">#initialize</a></span>
946
+ <small>RRTF::Information</small>
883
947
  </div>
884
948
  </li>
885
949
 
886
950
 
887
951
  <li class="even ">
888
952
  <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>
953
+ <span class='object_link'><a href="RRTF/Page/Margin.html#initialize-instance_method" title="RRTF::Page::Margin#initialize (method)">#initialize</a></span>
954
+ <small>RRTF::Page::Margin</small>
891
955
  </div>
892
956
  </li>
893
957
 
894
958
 
895
959
  <li class="odd ">
896
960
  <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>
961
+ <span class='object_link'><a href="RRTF/Style.html#initialize-instance_method" title="RRTF::Style#initialize (method)">#initialize</a></span>
962
+ <small>RRTF::Style</small>
899
963
  </div>
900
964
  </li>
901
965
 
902
966
 
903
967
  <li class="even ">
904
968
  <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>
969
+ <span class='object_link'><a href="RRTF/Document.html#initialize-instance_method" title="RRTF::Document#initialize (method)">#initialize</a></span>
970
+ <small>RRTF::Document</small>
907
971
  </div>
908
972
  </li>
909
973
 
910
974
 
911
975
  <li class="odd ">
912
976
  <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>
977
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#initialize-instance_method" title="RRTF::ListLevelNode#initialize (method)">#initialize</a></span>
978
+ <small>RRTF::ListLevelNode</small>
915
979
  </div>
916
980
  </li>
917
981
 
918
982
 
919
983
  <li class="even ">
920
984
  <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>
985
+ <span class='object_link'><a href="RRTF/LinkNode.html#initialize-instance_method" title="RRTF::LinkNode#initialize (method)">#initialize</a></span>
986
+ <small>RRTF::LinkNode</small>
923
987
  </div>
924
988
  </li>
925
989
 
926
990
 
927
991
  <li class="odd ">
928
992
  <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>
993
+ <span class='object_link'><a href="RRTF/ListNode.html#initialize-instance_method" title="RRTF::ListNode#initialize (method)">#initialize</a></span>
994
+ <small>RRTF::ListNode</small>
931
995
  </div>
932
996
  </li>
933
997
 
934
998
 
935
999
  <li class="even ">
936
1000
  <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>
1001
+ <span class='object_link'><a href="RRTF/TextNode.html#initialize-instance_method" title="RRTF::TextNode#initialize (method)">#initialize</a></span>
1002
+ <small>RRTF::TextNode</small>
939
1003
  </div>
940
1004
  </li>
941
1005
 
942
1006
 
943
1007
  <li class="odd ">
944
1008
  <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>
1009
+ <span class='object_link'><a href="RRTF/Converters/HTML.html#initialize-instance_method" title="RRTF::Converters::HTML#initialize (method)">#initialize</a></span>
1010
+ <small>RRTF::Converters::HTML</small>
947
1011
  </div>
948
1012
  </li>
949
1013
 
950
1014
 
951
1015
  <li class="even ">
952
1016
  <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>
1017
+ <span class='object_link'><a href="RRTF/Converters/HTML/NodeSet.html#initialize-instance_method" title="RRTF::Converters::HTML::NodeSet#initialize (method)">#initialize</a></span>
1018
+ <small>RRTF::Converters::HTML::NodeSet</small>
955
1019
  </div>
956
1020
  </li>
957
1021
 
958
1022
 
959
1023
  <li class="odd ">
1024
+ <div class="item">
1025
+ <span class='object_link'><a href="RRTF/Converters/HTML/Node.html#initialize-instance_method" title="RRTF::Converters::HTML::Node#initialize (method)">#initialize</a></span>
1026
+ <small>RRTF::Converters::HTML::Node</small>
1027
+ </div>
1028
+ </li>
1029
+
1030
+
1031
+ <li class="even ">
960
1032
  <div class="item">
961
1033
  <span class='object_link'><a href="RRTF/TableRowNode.html#initialize-instance_method" title="RRTF::TableRowNode#initialize (method)">#initialize</a></span>
962
1034
  <small>RRTF::TableRowNode</small>
@@ -964,31 +1036,47 @@
964
1036
  </li>
965
1037
 
966
1038
 
1039
+ <li class="odd ">
1040
+ <div class="item">
1041
+ <span class='object_link'><a href="RRTF/ImageNode.html#initialize-instance_method" title="RRTF::ImageNode#initialize (method)">#initialize</a></span>
1042
+ <small>RRTF::ImageNode</small>
1043
+ </div>
1044
+ </li>
1045
+
1046
+
967
1047
  <li class="even ">
968
1048
  <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>
1049
+ <span class='object_link'><a href="RRTF/ParagraphNode.html#initialize-instance_method" title="RRTF::ParagraphNode#initialize (method)">#initialize</a></span>
1050
+ <small>RRTF::ParagraphNode</small>
971
1051
  </div>
972
1052
  </li>
973
1053
 
974
1054
 
975
1055
  <li class="odd ">
976
1056
  <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>
1057
+ <span class='object_link'><a href="RRTF/TableNode.html#initialize-instance_method" title="RRTF::TableNode#initialize (method)">#initialize</a></span>
1058
+ <small>RRTF::TableNode</small>
979
1059
  </div>
980
1060
  </li>
981
1061
 
982
1062
 
983
1063
  <li class="even ">
984
1064
  <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>
1065
+ <span class='object_link'><a href="RRTF/ListTextNode.html#initialize-instance_method" title="RRTF::ListTextNode#initialize (method)">#initialize</a></span>
1066
+ <small>RRTF::ListTextNode</small>
987
1067
  </div>
988
1068
  </li>
989
1069
 
990
1070
 
991
1071
  <li class="odd ">
1072
+ <div class="item">
1073
+ <span class='object_link'><a href="RRTF/FooterNode.html#initialize-instance_method" title="RRTF::FooterNode#initialize (method)">#initialize</a></span>
1074
+ <small>RRTF::FooterNode</small>
1075
+ </div>
1076
+ </li>
1077
+
1078
+
1079
+ <li class="even ">
992
1080
  <div class="item">
993
1081
  <span class='object_link'><a href="RRTF/HeaderNode.html#initialize-instance_method" title="RRTF::HeaderNode#initialize (method)">#initialize</a></span>
994
1082
  <small>RRTF::HeaderNode</small>
@@ -996,113 +1084,121 @@
996
1084
  </li>
997
1085
 
998
1086
 
1087
+ <li class="odd ">
1088
+ <div class="item">
1089
+ <span class='object_link'><a href="RRTF/CommandNode.html#initialize-instance_method" title="RRTF::CommandNode#initialize (method)">#initialize</a></span>
1090
+ <small>RRTF::CommandNode</small>
1091
+ </div>
1092
+ </li>
1093
+
1094
+
999
1095
  <li class="even ">
1000
1096
  <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>
1097
+ <span class='object_link'><a href="RRTF/GeometryNode.html#initialize-instance_method" title="RRTF::GeometryNode#initialize (method)">#initialize</a></span>
1098
+ <small>RRTF::GeometryNode</small>
1003
1099
  </div>
1004
1100
  </li>
1005
1101
 
1006
1102
 
1007
1103
  <li class="odd ">
1008
1104
  <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>
1105
+ <span class='object_link'><a href="RRTF/ContainerNode.html#initialize-instance_method" title="RRTF::ContainerNode#initialize (method)">#initialize</a></span>
1106
+ <small>RRTF::ContainerNode</small>
1011
1107
  </div>
1012
1108
  </li>
1013
1109
 
1014
1110
 
1015
1111
  <li class="even ">
1016
1112
  <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>
1113
+ <span class='object_link'><a href="RRTF/BorderStyle.html#initialize-instance_method" title="RRTF::BorderStyle#initialize (method)">#initialize</a></span>
1114
+ <small>RRTF::BorderStyle</small>
1019
1115
  </div>
1020
1116
  </li>
1021
1117
 
1022
1118
 
1023
1119
  <li class="odd ">
1024
1120
  <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>
1121
+ <span class='object_link'><a href="RRTF/BorderFormatting.html#initialize_border_formatting-instance_method" title="RRTF::BorderFormatting#initialize_border_formatting (method)">#initialize_border_formatting</a></span>
1122
+ <small>RRTF::BorderFormatting</small>
1027
1123
  </div>
1028
1124
  </li>
1029
1125
 
1030
1126
 
1031
1127
  <li class="even ">
1032
1128
  <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>
1129
+ <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>
1130
+ <small>RRTF::CharacterFormatting</small>
1035
1131
  </div>
1036
1132
  </li>
1037
1133
 
1038
1134
 
1039
1135
  <li class="odd ">
1040
1136
  <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>
1137
+ <span class='object_link'><a href="RRTF/DocumentFormatting.html#initialize_document_formatting-instance_method" title="RRTF::DocumentFormatting#initialize_document_formatting (method)">#initialize_document_formatting</a></span>
1138
+ <small>RRTF::DocumentFormatting</small>
1043
1139
  </div>
1044
1140
  </li>
1045
1141
 
1046
1142
 
1047
1143
  <li class="even ">
1048
1144
  <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>
1145
+ <span class='object_link'><a href="RRTF/PageFormatting.html#initialize_page_formatting-instance_method" title="RRTF::PageFormatting#initialize_page_formatting (method)">#initialize_page_formatting</a></span>
1146
+ <small>RRTF::PageFormatting</small>
1051
1147
  </div>
1052
1148
  </li>
1053
1149
 
1054
1150
 
1055
1151
  <li class="odd ">
1056
1152
  <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>
1153
+ <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>
1154
+ <small>RRTF::ParagraphFormatting</small>
1059
1155
  </div>
1060
1156
  </li>
1061
1157
 
1062
1158
 
1063
1159
  <li class="even ">
1064
1160
  <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>
1161
+ <span class='object_link'><a href="RRTF/PositionFormatting.html#initialize_position_formatting-instance_method" title="RRTF::PositionFormatting#initialize_position_formatting (method)">#initialize_position_formatting</a></span>
1162
+ <small>RRTF::PositionFormatting</small>
1067
1163
  </div>
1068
1164
  </li>
1069
1165
 
1070
1166
 
1071
1167
  <li class="odd ">
1072
1168
  <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>
1169
+ <span class='object_link'><a href="RRTF/ShadingFormatting.html#initialize_shading_formatting-instance_method" title="RRTF::ShadingFormatting#initialize_shading_formatting (method)">#initialize_shading_formatting</a></span>
1170
+ <small>RRTF::ShadingFormatting</small>
1075
1171
  </div>
1076
1172
  </li>
1077
1173
 
1078
1174
 
1079
1175
  <li class="even ">
1080
1176
  <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>
1177
+ <span class='object_link'><a href="RRTF/TextNode.html#insert-instance_method" title="RRTF::TextNode#insert (method)">#insert</a></span>
1178
+ <small>RRTF::TextNode</small>
1083
1179
  </div>
1084
1180
  </li>
1085
1181
 
1086
1182
 
1087
1183
  <li class="odd ">
1088
1184
  <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>
1185
+ <span class='object_link'><a href="RRTF/ImageNode.html#inspect-class_method" title="RRTF::ImageNode.inspect (method)">inspect</a></span>
1186
+ <small>RRTF::ImageNode</small>
1091
1187
  </div>
1092
1188
  </li>
1093
1189
 
1094
1190
 
1095
1191
  <li class="even ">
1096
1192
  <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>
1193
+ <span class='object_link'><a href="RRTF/Node.html#is_root%3F-instance_method" title="RRTF::Node#is_root? (method)">#is_root?</a></span>
1194
+ <small>RRTF::Node</small>
1099
1195
  </div>
1100
1196
  </li>
1101
1197
 
1102
1198
 
1103
1199
  <li class="odd ">
1104
1200
  <div class="item">
1105
- <span class='object_link'><a href="RRTF/ListLevelNode.html#kind-instance_method" title="RRTF::ListLevelNode#kind (method)">#kind</a></span>
1201
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#item-instance_method" title="RRTF::ListLevelNode#item (method)">#item</a></span>
1106
1202
  <small>RRTF::ListLevelNode</small>
1107
1203
  </div>
1108
1204
  </li>
@@ -1110,48 +1206,48 @@
1110
1206
 
1111
1207
  <li class="even ">
1112
1208
  <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>
1209
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#kind-instance_method" title="RRTF::ListLevelNode#kind (method)">#kind</a></span>
1210
+ <small>RRTF::ListLevelNode</small>
1115
1211
  </div>
1116
1212
  </li>
1117
1213
 
1118
1214
 
1119
1215
  <li class="odd ">
1120
1216
  <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>
1217
+ <span class='object_link'><a href="RRTF/Document.html#language-instance_method" title="RRTF::Document#language (method)">#language</a></span>
1218
+ <small>RRTF::Document</small>
1123
1219
  </div>
1124
1220
  </li>
1125
1221
 
1126
1222
 
1127
1223
  <li class="even ">
1128
1224
  <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>
1225
+ <span class='object_link'><a href="RRTF/ContainerNode.html#last-instance_method" title="RRTF::ContainerNode#last (method)">#last</a></span>
1226
+ <small>RRTF::ContainerNode</small>
1131
1227
  </div>
1132
1228
  </li>
1133
1229
 
1134
1230
 
1135
1231
  <li class="odd ">
1136
1232
  <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>
1233
+ <span class='object_link'><a href="RRTF/Page/Margin.html#left-instance_method" title="RRTF::Page::Margin#left (method)">#left</a></span>
1234
+ <small>RRTF::Page::Margin</small>
1139
1235
  </div>
1140
1236
  </li>
1141
1237
 
1142
1238
 
1143
1239
  <li class="even ">
1144
1240
  <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>
1241
+ <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>
1242
+ <small>RRTF::TableCellNode</small>
1147
1243
  </div>
1148
1244
  </li>
1149
1245
 
1150
1246
 
1151
1247
  <li class="odd ">
1152
1248
  <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>
1249
+ <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>
1250
+ <small>RRTF::TableCellNode</small>
1155
1251
  </div>
1156
1252
  </li>
1157
1253
 
@@ -1166,16 +1262,16 @@
1166
1262
 
1167
1263
  <li class="odd ">
1168
1264
  <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>
1265
+ <span class='object_link'><a href="RRTF/ListLevel.html#level-instance_method" title="RRTF::ListLevel#level (method)">#level</a></span>
1266
+ <small>RRTF::ListLevel</small>
1171
1267
  </div>
1172
1268
  </li>
1173
1269
 
1174
1270
 
1175
1271
  <li class="even ">
1176
1272
  <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>
1273
+ <span class='object_link'><a href="RRTF/ListLevelNode.html#level-instance_method" title="RRTF::ListLevelNode#level (method)">#level</a></span>
1274
+ <small>RRTF::ListLevelNode</small>
1179
1275
  </div>
1180
1276
  </li>
1181
1277
 
@@ -1254,56 +1350,56 @@
1254
1350
 
1255
1351
  <li class="even ">
1256
1352
  <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>
1353
+ <span class='object_link'><a href="RRTF/Font.html#name-instance_method" title="RRTF::Font#name (method)">#name</a></span>
1354
+ <small>RRTF::Font</small>
1259
1355
  </div>
1260
1356
  </li>
1261
1357
 
1262
1358
 
1263
1359
  <li class="odd ">
1264
1360
  <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>
1361
+ <span class='object_link'><a href="RRTF/ListMarker.html#name-instance_method" title="RRTF::ListMarker#name (method)">#name</a></span>
1362
+ <small>RRTF::ListMarker</small>
1267
1363
  </div>
1268
1364
  </li>
1269
1365
 
1270
1366
 
1271
1367
  <li class="even ">
1272
1368
  <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>
1369
+ <span class='object_link'><a href="RRTF/Style.html#name-instance_method" title="RRTF::Style#name (method)">#name</a></span>
1370
+ <small>RRTF::Style</small>
1275
1371
  </div>
1276
1372
  </li>
1277
1373
 
1278
1374
 
1279
1375
  <li class="odd ">
1280
1376
  <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>
1377
+ <span class='object_link'><a href="RRTF/ListTable.html#new_template-instance_method" title="RRTF::ListTable#new_template (method)">#new_template</a></span>
1378
+ <small>RRTF::ListTable</small>
1283
1379
  </div>
1284
1380
  </li>
1285
1381
 
1286
1382
 
1287
1383
  <li class="even ">
1288
1384
  <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>
1385
+ <span class='object_link'><a href="RRTF/Node.html#next_node-instance_method" title="RRTF::Node#next_node (method)">#next_node</a></span>
1386
+ <small>RRTF::Node</small>
1291
1387
  </div>
1292
1388
  </li>
1293
1389
 
1294
1390
 
1295
1391
  <li class="odd ">
1296
1392
  <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>
1393
+ <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>
1394
+ <small>RRTF::Style</small>
1299
1395
  </div>
1300
1396
  </li>
1301
1397
 
1302
1398
 
1303
1399
  <li class="even ">
1304
1400
  <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>
1401
+ <span class='object_link'><a href="RRTF/Utilities.html#num2pt-class_method" title="RRTF::Utilities.num2pt (method)">num2pt</a></span>
1402
+ <small>RRTF::Utilities</small>
1307
1403
  </div>
1308
1404
  </li>
1309
1405
 
@@ -1318,16 +1414,16 @@
1318
1414
 
1319
1415
  <li class="even ">
1320
1416
  <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>
1417
+ <span class='object_link'><a href="RRTF/Document.html#page_break-instance_method" title="RRTF::Document#page_break (method)">#page_break</a></span>
1418
+ <small>RRTF::Document</small>
1323
1419
  </div>
1324
1420
  </li>
1325
1421
 
1326
1422
 
1327
1423
  <li class="odd ">
1328
1424
  <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>
1425
+ <span class='object_link'><a href="RRTF/PageFormatting.html#page_formatting_to_rtf-instance_method" title="RRTF::PageFormatting#page_formatting_to_rtf (method)">#page_formatting_to_rtf</a></span>
1426
+ <small>RRTF::PageFormatting</small>
1331
1427
  </div>
1332
1428
  </li>
1333
1429
 
@@ -1342,40 +1438,40 @@
1342
1438
 
1343
1439
  <li class="odd ">
1344
1440
  <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>
1441
+ <span class='object_link'><a href="RRTF/CommandNode.html#paragraph-instance_method" title="RRTF::CommandNode#paragraph (method)">#paragraph</a></span>
1442
+ <small>RRTF::CommandNode</small>
1347
1443
  </div>
1348
1444
  </li>
1349
1445
 
1350
1446
 
1351
1447
  <li class="even ">
1352
1448
  <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>
1449
+ <span class='object_link'><a href="RRTF/TableCellNode.html#paragraph-instance_method" title="RRTF::TableCellNode#paragraph (method)">#paragraph</a></span>
1450
+ <small>RRTF::TableCellNode</small>
1355
1451
  </div>
1356
1452
  </li>
1357
1453
 
1358
1454
 
1359
1455
  <li class="odd ">
1360
1456
  <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>
1457
+ <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>
1458
+ <small>RRTF::ParagraphFormatting</small>
1363
1459
  </div>
1364
1460
  </li>
1365
1461
 
1366
1462
 
1367
1463
  <li class="even ">
1368
1464
  <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>
1465
+ <span class='object_link'><a href="RRTF/Node.html#parent-instance_method" title="RRTF::Node#parent (method)">#parent</a></span>
1466
+ <small>RRTF::Node</small>
1371
1467
  </div>
1372
1468
  </li>
1373
1469
 
1374
1470
 
1375
1471
  <li class="odd ">
1376
1472
  <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>
1473
+ <span class='object_link'><a href="RRTF/TableRowNode.html#parent=-instance_method" title="RRTF::TableRowNode#parent= (method)">#parent=</a></span>
1474
+ <small>RRTF::TableRowNode</small>
1379
1475
  </div>
1380
1476
  </li>
1381
1477
 
@@ -1390,231 +1486,231 @@
1390
1486
 
1391
1487
  <li class="odd ">
1392
1488
  <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>
1489
+ <span class='object_link'><a href="RRTF/TableCellNode.html#parent=-instance_method" title="RRTF::TableCellNode#parent= (method)">#parent=</a></span>
1490
+ <small>RRTF::TableCellNode</small>
1395
1491
  </div>
1396
1492
  </li>
1397
1493
 
1398
1494
 
1399
1495
  <li class="even ">
1400
1496
  <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>
1497
+ <span class='object_link'><a href="RRTF/ImageNode.html#parse_border_array-class_method" title="RRTF::ImageNode.parse_border_array (method)">parse_border_array</a></span>
1498
+ <small>RRTF::ImageNode</small>
1403
1499
  </div>
1404
1500
  </li>
1405
1501
 
1406
1502
 
1407
1503
  <li class="odd ">
1408
1504
  <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>
1505
+ <span class='object_link'><a href="RRTF/Page/Size.html#parse_string-class_method" title="RRTF::Page::Size.parse_string (method)">parse_string</a></span>
1506
+ <small>RRTF::Page::Size</small>
1411
1507
  </div>
1412
1508
  </li>
1413
1509
 
1414
1510
 
1415
1511
  <li class="even ">
1416
1512
  <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>
1513
+ <span class='object_link'><a href="RRTF/Page/Margin.html#parse_string-class_method" title="RRTF::Page::Margin.parse_string (method)">parse_string</a></span>
1514
+ <small>RRTF::Page::Margin</small>
1419
1515
  </div>
1420
1516
  </li>
1421
1517
 
1422
1518
 
1423
1519
  <li class="odd ">
1424
1520
  <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>
1521
+ <span class='object_link'><a href="RRTF/Utilities.html#parse_string_with_units-class_method" title="RRTF::Utilities.parse_string_with_units (method)">parse_string_with_units</a></span>
1522
+ <small>RRTF::Utilities</small>
1427
1523
  </div>
1428
1524
  </li>
1429
1525
 
1430
1526
 
1431
1527
  <li class="even ">
1432
1528
  <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>
1529
+ <span class='object_link'><a href="RRTF/PositionFormatting.html#position_formatting_to_rtf-instance_method" title="RRTF::PositionFormatting#position_formatting_to_rtf (method)">#position_formatting_to_rtf</a></span>
1530
+ <small>RRTF::PositionFormatting</small>
1435
1531
  </div>
1436
1532
  </li>
1437
1533
 
1438
1534
 
1439
1535
  <li class="odd ">
1440
1536
  <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>
1537
+ <span class='object_link'><a href="RRTF/BorderStyle.html#prefix-instance_method" title="RRTF::BorderStyle#prefix (method)">#prefix</a></span>
1538
+ <small>RRTF::BorderStyle</small>
1443
1539
  </div>
1444
1540
  </li>
1445
1541
 
1446
1542
 
1447
1543
  <li class="even ">
1448
1544
  <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>
1545
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#prefix-instance_method" title="RRTF::ParagraphStyle#prefix (method)">#prefix</a></span>
1546
+ <small>RRTF::ParagraphStyle</small>
1451
1547
  </div>
1452
1548
  </li>
1453
1549
 
1454
1550
 
1455
1551
  <li class="odd ">
1456
1552
  <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>
1553
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#prefix-instance_method" title="RRTF::AnonymousStyle#prefix (method)">#prefix</a></span>
1554
+ <small>RRTF::AnonymousStyle</small>
1459
1555
  </div>
1460
1556
  </li>
1461
1557
 
1462
1558
 
1463
1559
  <li class="even ">
1464
1560
  <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>
1561
+ <span class='object_link'><a href="RRTF/CommandNode.html#prefix-instance_method" title="RRTF::CommandNode#prefix (method)">#prefix</a></span>
1562
+ <small>RRTF::CommandNode</small>
1467
1563
  </div>
1468
1564
  </li>
1469
1565
 
1470
1566
 
1471
1567
  <li class="odd ">
1472
1568
  <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>
1569
+ <span class='object_link'><a href="RRTF/ShadingStyle.html#prefix-instance_method" title="RRTF::ShadingStyle#prefix (method)">#prefix</a></span>
1570
+ <small>RRTF::ShadingStyle</small>
1475
1571
  </div>
1476
1572
  </li>
1477
1573
 
1478
1574
 
1479
1575
  <li class="even ">
1480
1576
  <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>
1577
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#prefix-instance_method" title="RRTF::CharacterStyle#prefix (method)">#prefix</a></span>
1578
+ <small>RRTF::CharacterStyle</small>
1483
1579
  </div>
1484
1580
  </li>
1485
1581
 
1486
1582
 
1487
1583
  <li class="odd ">
1488
1584
  <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>
1585
+ <span class='object_link'><a href="RRTF/PositionStyle.html#prefix-instance_method" title="RRTF::PositionStyle#prefix (method)">#prefix</a></span>
1586
+ <small>RRTF::PositionStyle</small>
1491
1587
  </div>
1492
1588
  </li>
1493
1589
 
1494
1590
 
1495
1591
  <li class="even ">
1496
1592
  <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>
1593
+ <span class='object_link'><a href="RRTF/Node.html#previous_node-instance_method" title="RRTF::Node#previous_node (method)">#previous_node</a></span>
1594
+ <small>RRTF::Node</small>
1499
1595
  </div>
1500
1596
  </li>
1501
1597
 
1502
1598
 
1503
1599
  <li class="odd ">
1504
1600
  <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>
1601
+ <span class='object_link'><a href="RRTF/Style.html#primary-instance_method" title="RRTF::Style#primary (method)">#primary</a></span>
1602
+ <small>RRTF::Style</small>
1507
1603
  </div>
1508
1604
  </li>
1509
1605
 
1510
1606
 
1511
1607
  <li class="even ">
1512
1608
  <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>
1609
+ <span class='object_link'><a href="RRTF/Style.html#priority-instance_method" title="RRTF::Style#priority (method)">#priority</a></span>
1610
+ <small>RRTF::Style</small>
1515
1611
  </div>
1516
1612
  </li>
1517
1613
 
1518
1614
 
1519
1615
  <li class="odd ">
1520
1616
  <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>
1617
+ <span class='object_link'><a href="RRTF/Document.html#properties-instance_method" title="RRTF::Document#properties (method)">#properties</a></span>
1618
+ <small>RRTF::Document</small>
1523
1619
  </div>
1524
1620
  </li>
1525
1621
 
1526
1622
 
1527
1623
  <li class="even ">
1528
1624
  <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>
1625
+ <span class='object_link'><a href="RRTF/GeometryNode.html#properties-instance_method" title="RRTF::GeometryNode#properties (method)">#properties</a></span>
1626
+ <small>RRTF::GeometryNode</small>
1531
1627
  </div>
1532
1628
  </li>
1533
1629
 
1534
1630
 
1535
1631
  <li class="odd ">
1536
1632
  <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>
1633
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#push_colours-instance_method" title="RRTF::AnonymousStyle#push_colours (method)">#push_colours</a></span>
1634
+ <small>RRTF::AnonymousStyle</small>
1539
1635
  </div>
1540
1636
  </li>
1541
1637
 
1542
1638
 
1543
1639
  <li class="even ">
1544
1640
  <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>
1641
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#push_fonts-instance_method" title="RRTF::AnonymousStyle#push_fonts (method)">#push_fonts</a></span>
1642
+ <small>RRTF::AnonymousStyle</small>
1547
1643
  </div>
1548
1644
  </li>
1549
1645
 
1550
1646
 
1551
1647
  <li class="odd ">
1552
1648
  <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>
1649
+ <span class='object_link'><a href="RRTF/Converters/HTML/Node.html#recurse-instance_method" title="RRTF::Converters::HTML::Node#recurse (method)">#recurse</a></span>
1650
+ <small>RRTF::Converters::HTML::Node</small>
1555
1651
  </div>
1556
1652
  </li>
1557
1653
 
1558
1654
 
1559
1655
  <li class="even ">
1560
1656
  <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>
1657
+ <span class='object_link'><a href="RRTF/Colour.html#red-instance_method" title="RRTF::Colour#red (method)">#red</a></span>
1658
+ <small>RRTF::Colour</small>
1563
1659
  </div>
1564
1660
  </li>
1565
1661
 
1566
1662
 
1567
1663
  <li class="odd ">
1568
1664
  <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>
1665
+ <span class='object_link'><a href="RRTF/ListLevel.html#reset_tabs-instance_method" title="RRTF::ListLevel#reset_tabs (method)">#reset_tabs</a></span>
1666
+ <small>RRTF::ListLevel</small>
1571
1667
  </div>
1572
1668
  </li>
1573
1669
 
1574
1670
 
1575
1671
  <li class="even ">
1576
1672
  <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>
1673
+ <span class='object_link'><a href="RRTF/Page/Margin.html#right-instance_method" title="RRTF::Page::Margin#right (method)">#right</a></span>
1674
+ <small>RRTF::Page::Margin</small>
1579
1675
  </div>
1580
1676
  </li>
1581
1677
 
1582
1678
 
1583
1679
  <li class="odd ">
1584
1680
  <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>
1681
+ <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>
1682
+ <small>RRTF::TableCellNode</small>
1587
1683
  </div>
1588
1684
  </li>
1589
1685
 
1590
1686
 
1591
1687
  <li class="even ">
1592
1688
  <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>
1689
+ <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>
1690
+ <small>RRTF::TableCellNode</small>
1595
1691
  </div>
1596
1692
  </li>
1597
1693
 
1598
1694
 
1599
1695
  <li class="odd ">
1600
1696
  <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>
1697
+ <span class='object_link'><a href="RRTF/Node.html#root-instance_method" title="RRTF::Node#root (method)">#root</a></span>
1698
+ <small>RRTF::Node</small>
1603
1699
  </div>
1604
1700
  </li>
1605
1701
 
1606
1702
 
1607
1703
  <li class="even ">
1608
1704
  <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>
1705
+ <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>
1706
+ <small>RRTF::TableNode</small>
1611
1707
  </div>
1612
1708
  </li>
1613
1709
 
1614
1710
 
1615
1711
  <li class="odd ">
1616
1712
  <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>
1713
+ <span class='object_link'><a href="RRTF/TableNode.html#rows-instance_method" title="RRTF::TableNode#rows (method)">#rows</a></span>
1618
1714
  <small>RRTF::TableNode</small>
1619
1715
  </div>
1620
1716
  </li>
@@ -1622,143 +1718,175 @@
1622
1718
 
1623
1719
  <li class="even ">
1624
1720
  <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>
1721
+ <span class='object_link'><a href="RRTF/ShadingStyle.html#rtf_formatting-instance_method" title="RRTF::ShadingStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1722
+ <small>RRTF::ShadingStyle</small>
1627
1723
  </div>
1628
1724
  </li>
1629
1725
 
1630
1726
 
1631
1727
  <li class="odd ">
1632
1728
  <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>
1729
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#rtf_formatting-instance_method" title="RRTF::AnonymousStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1730
+ <small>RRTF::AnonymousStyle</small>
1635
1731
  </div>
1636
1732
  </li>
1637
1733
 
1638
1734
 
1639
1735
  <li class="even ">
1640
1736
  <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>
1737
+ <span class='object_link'><a href="RRTF/PositionStyle.html#rtf_formatting-instance_method" title="RRTF::PositionStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1738
+ <small>RRTF::PositionStyle</small>
1643
1739
  </div>
1644
1740
  </li>
1645
1741
 
1646
1742
 
1647
1743
  <li class="odd ">
1648
1744
  <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>
1745
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#rtf_formatting-instance_method" title="RRTF::ParagraphStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1746
+ <small>RRTF::ParagraphStyle</small>
1651
1747
  </div>
1652
1748
  </li>
1653
1749
 
1654
1750
 
1655
1751
  <li class="even ">
1656
1752
  <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>
1753
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#rtf_formatting-instance_method" title="RRTF::CharacterStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1754
+ <small>RRTF::CharacterStyle</small>
1659
1755
  </div>
1660
1756
  </li>
1661
1757
 
1662
1758
 
1663
1759
  <li class="odd ">
1664
1760
  <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>
1761
+ <span class='object_link'><a href="RRTF/BorderStyle.html#rtf_formatting-instance_method" title="RRTF::BorderStyle#rtf_formatting (method)">#rtf_formatting</a></span>
1762
+ <small>RRTF::BorderStyle</small>
1667
1763
  </div>
1668
1764
  </li>
1669
1765
 
1670
1766
 
1671
1767
  <li class="even ">
1672
1768
  <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>
1769
+ <span class='object_link'><a href="RRTF/BorderFormatting.html#set_border_formatting_from_hashmap-instance_method" title="RRTF::BorderFormatting#set_border_formatting_from_hashmap (method)">#set_border_formatting_from_hashmap</a></span>
1770
+ <small>RRTF::BorderFormatting</small>
1675
1771
  </div>
1676
1772
  </li>
1677
1773
 
1678
1774
 
1679
1775
  <li class="odd ">
1680
1776
  <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>
1777
+ <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>
1778
+ <small>RRTF::CharacterFormatting</small>
1683
1779
  </div>
1684
1780
  </li>
1685
1781
 
1686
1782
 
1687
1783
  <li class="even ">
1688
1784
  <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>
1785
+ <span class='object_link'><a href="RRTF/DocumentFormatting.html#set_document_formatting_from_hashmap-instance_method" title="RRTF::DocumentFormatting#set_document_formatting_from_hashmap (method)">#set_document_formatting_from_hashmap</a></span>
1786
+ <small>RRTF::DocumentFormatting</small>
1691
1787
  </div>
1692
1788
  </li>
1693
1789
 
1694
1790
 
1695
1791
  <li class="odd ">
1696
1792
  <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>
1793
+ <span class='object_link'><a href="RRTF/PageFormatting.html#set_page_formatting_from_hashmap-instance_method" title="RRTF::PageFormatting#set_page_formatting_from_hashmap (method)">#set_page_formatting_from_hashmap</a></span>
1794
+ <small>RRTF::PageFormatting</small>
1699
1795
  </div>
1700
1796
  </li>
1701
1797
 
1702
1798
 
1703
1799
  <li class="even ">
1704
1800
  <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>
1801
+ <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>
1802
+ <small>RRTF::ParagraphFormatting</small>
1707
1803
  </div>
1708
1804
  </li>
1709
1805
 
1710
1806
 
1711
1807
  <li class="odd ">
1712
1808
  <div class="item">
1713
- <span class='object_link'><a href="RRTF/TableCellNode.html#style-instance_method" title="RRTF::TableCellNode#style (method)">#style</a></span>
1809
+ <span class='object_link'><a href="RRTF/PositionFormatting.html#set_position_formatting_from_hashmap-instance_method" title="RRTF::PositionFormatting#set_position_formatting_from_hashmap (method)">#set_position_formatting_from_hashmap</a></span>
1810
+ <small>RRTF::PositionFormatting</small>
1811
+ </div>
1812
+ </li>
1813
+
1814
+
1815
+ <li class="even ">
1816
+ <div class="item">
1817
+ <span class='object_link'><a href="RRTF/ShadingFormatting.html#set_shading_formatting_from_hashmap-instance_method" title="RRTF::ShadingFormatting#set_shading_formatting_from_hashmap (method)">#set_shading_formatting_from_hashmap</a></span>
1818
+ <small>RRTF::ShadingFormatting</small>
1819
+ </div>
1820
+ </li>
1821
+
1822
+
1823
+ <li class="odd ">
1824
+ <div class="item">
1825
+ <span class='object_link'><a href="RRTF/TableNode.html#shading_colour-instance_method" title="RRTF::TableNode#shading_colour (method)">#shading_colour</a></span>
1826
+ <small>RRTF::TableNode</small>
1827
+ </div>
1828
+ </li>
1829
+
1830
+
1831
+ <li class="even ">
1832
+ <div class="item">
1833
+ <span class='object_link'><a href="RRTF/TableCellNode.html#shading_colour-instance_method" title="RRTF::TableCellNode#shading_colour (method)">#shading_colour</a></span>
1714
1834
  <small>RRTF::TableCellNode</small>
1715
1835
  </div>
1716
1836
  </li>
1717
1837
 
1718
1838
 
1839
+ <li class="odd ">
1840
+ <div class="item">
1841
+ <span class='object_link'><a href="RRTF/TableRowNode.html#shading_colour=-instance_method" title="RRTF::TableRowNode#shading_colour= (method)">#shading_colour=</a></span>
1842
+ <small>RRTF::TableRowNode</small>
1843
+ </div>
1844
+ </li>
1845
+
1846
+
1719
1847
  <li class="even ">
1720
1848
  <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>
1849
+ <span class='object_link'><a href="RRTF/ShadingFormatting.html#shading_formatting_to_rtf-instance_method" title="RRTF::ShadingFormatting#shading_formatting_to_rtf (method)">#shading_formatting_to_rtf</a></span>
1850
+ <small>RRTF::ShadingFormatting</small>
1723
1851
  </div>
1724
1852
  </li>
1725
1853
 
1726
1854
 
1727
1855
  <li class="odd ">
1728
1856
  <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>
1857
+ <span class='object_link'><a href="RRTF/ColourTable.html#size-instance_method" title="RRTF::ColourTable#size (method)">#size</a></span>
1858
+ <small>RRTF::ColourTable</small>
1731
1859
  </div>
1732
1860
  </li>
1733
1861
 
1734
1862
 
1735
1863
  <li class="even ">
1736
1864
  <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>
1865
+ <span class='object_link'><a href="RRTF/ContainerNode.html#size-instance_method" title="RRTF::ContainerNode#size (method)">#size</a></span>
1866
+ <small>RRTF::ContainerNode</small>
1739
1867
  </div>
1740
1868
  </li>
1741
1869
 
1742
1870
 
1743
1871
  <li class="odd ">
1744
1872
  <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>
1873
+ <span class='object_link'><a href="RRTF/FontTable.html#size-instance_method" title="RRTF::FontTable#size (method)">#size</a></span>
1874
+ <small>RRTF::FontTable</small>
1747
1875
  </div>
1748
1876
  </li>
1749
1877
 
1750
1878
 
1751
1879
  <li class="even ">
1752
1880
  <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>
1881
+ <span class='object_link'><a href="RRTF/ImageNode.html#sizing_mode-instance_method" title="RRTF::ImageNode#sizing_mode (method)">#sizing_mode</a></span>
1882
+ <small>RRTF::ImageNode</small>
1755
1883
  </div>
1756
1884
  </li>
1757
1885
 
1758
1886
 
1759
1887
  <li class="odd ">
1760
1888
  <div class="item">
1761
- <span class='object_link'><a href="RRTF/CommandNode.html#subscript-instance_method" title="RRTF::CommandNode#subscript (method)">#subscript</a></span>
1889
+ <span class='object_link'><a href="RRTF/CommandNode.html#split-instance_method" title="RRTF::CommandNode#split (method)">#split</a></span>
1762
1890
  <small>RRTF::CommandNode</small>
1763
1891
  </div>
1764
1892
  </li>
@@ -1766,29 +1894,69 @@
1766
1894
 
1767
1895
  <li class="even ">
1768
1896
  <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>
1897
+ <span class='object_link'><a href="RRTF/ContainerNode.html#store-instance_method" title="RRTF::ContainerNode#store (method)">#store</a></span>
1898
+ <small>RRTF::ContainerNode</small>
1771
1899
  </div>
1772
1900
  </li>
1773
1901
 
1774
1902
 
1775
1903
  <li class="odd ">
1776
1904
  <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>
1905
+ <span class='object_link'><a href="RRTF/TableNode.html#store-instance_method" title="RRTF::TableNode#store (method)">#store</a></span>
1906
+ <small>RRTF::TableNode</small>
1779
1907
  </div>
1780
1908
  </li>
1781
1909
 
1782
1910
 
1783
1911
  <li class="even ">
1784
1912
  <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>
1913
+ <span class='object_link'><a href="RRTF/TableCellNode.html#style-instance_method" title="RRTF::TableCellNode#style (method)">#style</a></span>
1914
+ <small>RRTF::TableCellNode</small>
1787
1915
  </div>
1788
1916
  </li>
1789
1917
 
1790
1918
 
1791
1919
  <li class="odd ">
1920
+ <div class="item">
1921
+ <span class='object_link'><a href="RRTF/Converters/HTML/Helpers.html#style-instance_method" title="RRTF::Converters::HTML::Helpers#style (method)">#style</a></span>
1922
+ <small>RRTF::Converters::HTML::Helpers</small>
1923
+ </div>
1924
+ </li>
1925
+
1926
+
1927
+ <li class="even ">
1928
+ <div class="item">
1929
+ <span class='object_link'><a href="RRTF/Stylesheet.html#styles-instance_method" title="RRTF::Stylesheet#styles (method)">#styles</a></span>
1930
+ <small>RRTF::Stylesheet</small>
1931
+ </div>
1932
+ </li>
1933
+
1934
+
1935
+ <li class="odd ">
1936
+ <div class="item">
1937
+ <span class='object_link'><a href="RRTF/Document.html#stylesheet-instance_method" title="RRTF::Document#stylesheet (method)">#stylesheet</a></span>
1938
+ <small>RRTF::Document</small>
1939
+ </div>
1940
+ </li>
1941
+
1942
+
1943
+ <li class="even ">
1944
+ <div class="item">
1945
+ <span class='object_link'><a href="RRTF/AnonymousStyle.html#suffix-instance_method" title="RRTF::AnonymousStyle#suffix (method)">#suffix</a></span>
1946
+ <small>RRTF::AnonymousStyle</small>
1947
+ </div>
1948
+ </li>
1949
+
1950
+
1951
+ <li class="odd ">
1952
+ <div class="item">
1953
+ <span class='object_link'><a href="RRTF/CommandNode.html#suffix-instance_method" title="RRTF::CommandNode#suffix (method)">#suffix</a></span>
1954
+ <small>RRTF::CommandNode</small>
1955
+ </div>
1956
+ </li>
1957
+
1958
+
1959
+ <li class="even ">
1792
1960
  <div class="item">
1793
1961
  <span class='object_link'><a href="RRTF/TableCellNode.html#table-instance_method" title="RRTF::TableCellNode#table (method)">#table</a></span>
1794
1962
  <small>RRTF::TableCellNode</small>
@@ -1796,7 +1964,7 @@
1796
1964
  </li>
1797
1965
 
1798
1966
 
1799
- <li class="even ">
1967
+ <li class="odd ">
1800
1968
  <div class="item">
1801
1969
  <span class='object_link'><a href="RRTF/CommandNode.html#table-instance_method" title="RRTF::CommandNode#table (method)">#table</a></span>
1802
1970
  <small>RRTF::CommandNode</small>
@@ -1804,7 +1972,7 @@
1804
1972
  </li>
1805
1973
 
1806
1974
 
1807
- <li class="odd ">
1975
+ <li class="even ">
1808
1976
  <div class="item">
1809
1977
  <span class='object_link'><a href="RRTF/ListLevel.html#tabs-instance_method" title="RRTF::ListLevel#tabs (method)">#tabs</a></span>
1810
1978
  <small>RRTF::ListLevel</small>
@@ -1812,7 +1980,7 @@
1812
1980
  </li>
1813
1981
 
1814
1982
 
1815
- <li class="even ">
1983
+ <li class="odd ">
1816
1984
  <div class="item">
1817
1985
  <span class='object_link'><a href="RRTF/ListMarker.html#template_format-instance_method" title="RRTF::ListMarker#template_format (method)">#template_format</a></span>
1818
1986
  <small>RRTF::ListMarker</small>
@@ -1820,7 +1988,7 @@
1820
1988
  </li>
1821
1989
 
1822
1990
 
1823
- <li class="odd ">
1991
+ <li class="even ">
1824
1992
  <div class="item">
1825
1993
  <span class='object_link'><a href="RRTF/TextNode.html#text-instance_method" title="RRTF::TextNode#text (method)">#text</a></span>
1826
1994
  <small>RRTF::TextNode</small>
@@ -1828,7 +1996,7 @@
1828
1996
  </li>
1829
1997
 
1830
1998
 
1831
- <li class="even ">
1999
+ <li class="odd ">
1832
2000
  <div class="item">
1833
2001
  <span class='object_link'><a href="RRTF/ListMarker.html#text_format-instance_method" title="RRTF::ListMarker#text_format (method)">#text_format</a></span>
1834
2002
  <small>RRTF::ListMarker</small>
@@ -1836,7 +2004,7 @@
1836
2004
  </li>
1837
2005
 
1838
2006
 
1839
- <li class="odd ">
2007
+ <li class="even ">
1840
2008
  <div class="item">
1841
2009
  <span class='object_link'><a href="RRTF/Information.html#title-instance_method" title="RRTF::Information#title (method)">#title</a></span>
1842
2010
  <small>RRTF::Information</small>
@@ -1844,10 +2012,34 @@
1844
2012
  </li>
1845
2013
 
1846
2014
 
2015
+ <li class="odd ">
2016
+ <div class="item">
2017
+ <span class='object_link'><a href="RRTF/Colour.html#to_decimal-instance_method" title="RRTF::Colour#to_decimal (method)">#to_decimal</a></span>
2018
+ <small>RRTF::Colour</small>
2019
+ </div>
2020
+ </li>
2021
+
2022
+
1847
2023
  <li class="even ">
1848
2024
  <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>
2025
+ <span class='object_link'><a href="RRTF/Information.html#to_rtf-instance_method" title="RRTF::Information#to_rtf (method)">#to_rtf</a></span>
2026
+ <small>RRTF::Information</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-instance_method" title="RRTF::Converters::HTML#to_rtf (method)">#to_rtf</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/CommandNode.html#to_rtf-instance_method" title="RRTF::CommandNode#to_rtf (method)">#to_rtf</a></span>
2042
+ <small>RRTF::CommandNode</small>
1851
2043
  </div>
1852
2044
  </li>
1853
2045
 
@@ -1862,16 +2054,16 @@
1862
2054
 
1863
2055
  <li class="even ">
1864
2056
  <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>
2057
+ <span class='object_link'><a href="RRTF/TableNode.html#to_rtf-instance_method" title="RRTF::TableNode#to_rtf (method)">#to_rtf</a></span>
2058
+ <small>RRTF::TableNode</small>
1867
2059
  </div>
1868
2060
  </li>
1869
2061
 
1870
2062
 
1871
2063
  <li class="odd ">
1872
2064
  <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>
2065
+ <span class='object_link'><a href="RRTF/ImageNode.html#to_rtf-instance_method" title="RRTF::ImageNode#to_rtf (method)">#to_rtf</a></span>
2066
+ <small>RRTF::ImageNode</small>
1875
2067
  </div>
1876
2068
  </li>
1877
2069
 
@@ -1886,21 +2078,29 @@
1886
2078
 
1887
2079
  <li class="odd ">
1888
2080
  <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>
2081
+ <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>
2082
+ <small>RRTF::Converters::HTML::NodeSet</small>
1891
2083
  </div>
1892
2084
  </li>
1893
2085
 
1894
2086
 
1895
2087
  <li class="even ">
1896
2088
  <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>
2089
+ <span class='object_link'><a href="RRTF/TableRowNode.html#to_rtf-instance_method" title="RRTF::TableRowNode#to_rtf (method)">#to_rtf</a></span>
2090
+ <small>RRTF::TableRowNode</small>
1899
2091
  </div>
1900
2092
  </li>
1901
2093
 
1902
2094
 
1903
2095
  <li class="odd ">
2096
+ <div class="item">
2097
+ <span class='object_link'><a href="RRTF/GeometryNode.html#to_rtf-instance_method" title="RRTF::GeometryNode#to_rtf (method)">#to_rtf</a></span>
2098
+ <small>RRTF::GeometryNode</small>
2099
+ </div>
2100
+ </li>
2101
+
2102
+
2103
+ <li class="even ">
1904
2104
  <div class="item">
1905
2105
  <span class='object_link'><a href="RRTF/TextNode.html#to_rtf-instance_method" title="RRTF::TextNode#to_rtf (method)">#to_rtf</a></span>
1906
2106
  <small>RRTF::TextNode</small>
@@ -1908,50 +2108,58 @@
1908
2108
  </li>
1909
2109
 
1910
2110
 
2111
+ <li class="odd ">
2112
+ <div class="item">
2113
+ <span class='object_link'><a href="RRTF/Document.html#to_rtf-instance_method" title="RRTF::Document#to_rtf (method)">#to_rtf</a></span>
2114
+ <small>RRTF::Document</small>
2115
+ </div>
2116
+ </li>
2117
+
2118
+
1911
2119
  <li class="even ">
1912
2120
  <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>
2121
+ <span class='object_link'><a href="RRTF/Style.html#to_rtf-instance_method" title="RRTF::Style#to_rtf (method)">#to_rtf</a></span>
2122
+ <small>RRTF::Style</small>
1915
2123
  </div>
1916
2124
  </li>
1917
2125
 
1918
2126
 
1919
2127
  <li class="odd ">
1920
2128
  <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>
2129
+ <span class='object_link'><a href="RRTF/Stylesheet.html#to_rtf-instance_method" title="RRTF::Stylesheet#to_rtf (method)">#to_rtf</a></span>
2130
+ <small>RRTF::Stylesheet</small>
1923
2131
  </div>
1924
2132
  </li>
1925
2133
 
1926
2134
 
1927
2135
  <li class="even ">
1928
2136
  <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>
2137
+ <span class='object_link'><a href="RRTF/ColourTable.html#to_rtf-instance_method" title="RRTF::ColourTable#to_rtf (method)">#to_rtf</a></span>
2138
+ <small>RRTF::ColourTable</small>
1931
2139
  </div>
1932
2140
  </li>
1933
2141
 
1934
2142
 
1935
2143
  <li class="odd ">
1936
2144
  <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>
2145
+ <span class='object_link'><a href="RRTF/TableCellNode.html#to_rtf-instance_method" title="RRTF::TableCellNode#to_rtf (method)">#to_rtf</a></span>
2146
+ <small>RRTF::TableCellNode</small>
1939
2147
  </div>
1940
2148
  </li>
1941
2149
 
1942
2150
 
1943
2151
  <li class="even ">
1944
2152
  <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>
2153
+ <span class='object_link'><a href="RRTF/Colour.html#to_rtf-instance_method" title="RRTF::Colour#to_rtf (method)">#to_rtf</a></span>
2154
+ <small>RRTF::Colour</small>
1947
2155
  </div>
1948
2156
  </li>
1949
2157
 
1950
2158
 
1951
2159
  <li class="odd ">
1952
2160
  <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>
2161
+ <span class='object_link'><a href="RRTF/Properties.html#to_rtf-instance_method" title="RRTF::Properties#to_rtf (method)">#to_rtf</a></span>
2162
+ <small>RRTF::Properties</small>
1955
2163
  </div>
1956
2164
  </li>
1957
2165
 
@@ -1966,64 +2174,64 @@
1966
2174
 
1967
2175
  <li class="odd ">
1968
2176
  <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>
2177
+ <span class='object_link'><a href="RRTF/ListTemplate.html#to_rtf-instance_method" title="RRTF::ListTemplate#to_rtf (method)">#to_rtf</a></span>
2178
+ <small>RRTF::ListTemplate</small>
1971
2179
  </div>
1972
2180
  </li>
1973
2181
 
1974
2182
 
1975
2183
  <li class="even ">
1976
2184
  <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>
2185
+ <span class='object_link'><a href="RRTF/CharacterStyle.html#to_rtf-instance_method" title="RRTF::CharacterStyle#to_rtf (method)">#to_rtf</a></span>
2186
+ <small>RRTF::CharacterStyle</small>
1979
2187
  </div>
1980
2188
  </li>
1981
2189
 
1982
2190
 
1983
2191
  <li class="odd ">
1984
2192
  <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>
2193
+ <span class='object_link'><a href="RRTF/ListTable.html#to_rtf-instance_method" title="RRTF::ListTable#to_rtf (method)">#to_rtf</a></span>
2194
+ <small>RRTF::ListTable</small>
1987
2195
  </div>
1988
2196
  </li>
1989
2197
 
1990
2198
 
1991
2199
  <li class="even ">
1992
2200
  <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>
2201
+ <span class='object_link'><a href="RRTF/ParagraphStyle.html#to_rtf-instance_method" title="RRTF::ParagraphStyle#to_rtf (method)">#to_rtf</a></span>
2202
+ <small>RRTF::ParagraphStyle</small>
1995
2203
  </div>
1996
2204
  </li>
1997
2205
 
1998
2206
 
1999
2207
  <li class="odd ">
2000
2208
  <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>
2209
+ <span class='object_link'><a href="RRTF/FontTable.html#to_rtf-instance_method" title="RRTF::FontTable#to_rtf (method)">#to_rtf</a></span>
2210
+ <small>RRTF::FontTable</small>
2003
2211
  </div>
2004
2212
  </li>
2005
2213
 
2006
2214
 
2007
2215
  <li class="even ">
2008
2216
  <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>
2217
+ <span class='object_link'><a href="RRTF/Font.html#to_rtf-instance_method" title="RRTF::Font#to_rtf (method)">#to_rtf</a></span>
2218
+ <small>RRTF::Font</small>
2011
2219
  </div>
2012
2220
  </li>
2013
2221
 
2014
2222
 
2015
2223
  <li class="odd ">
2016
2224
  <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>
2225
+ <span class='object_link'><a href="RRTF/DocumentProperties.html#to_rtf-instance_method" title="RRTF::DocumentProperties#to_rtf (method)">#to_rtf</a></span>
2226
+ <small>RRTF::DocumentProperties</small>
2019
2227
  </div>
2020
2228
  </li>
2021
2229
 
2022
2230
 
2023
2231
  <li class="even ">
2024
2232
  <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>
2233
+ <span class='object_link'><a href="RRTF/GeometryProperties.html#to_rtf-instance_method" title="RRTF::GeometryProperties#to_rtf (method)">#to_rtf</a></span>
2234
+ <small>RRTF::GeometryProperties</small>
2027
2235
  </div>
2028
2236
  </li>
2029
2237
 
@@ -2037,6 +2245,14 @@
2037
2245
 
2038
2246
 
2039
2247
  <li class="even ">
2248
+ <div class="item">
2249
+ <span class='object_link'><a href="RRTF/Information.html#to_s-instance_method" title="RRTF::Information#to_s (method)">#to_s</a></span>
2250
+ <small>RRTF::Information</small>
2251
+ </div>
2252
+ </li>
2253
+
2254
+
2255
+ <li class="odd ">
2040
2256
  <div class="item">
2041
2257
  <span class='object_link'><a href="RRTF/Colour.html#to_s-instance_method" title="RRTF::Colour#to_s (method)">#to_s</a></span>
2042
2258
  <small>RRTF::Colour</small>
@@ -2044,7 +2260,7 @@
2044
2260
  </li>
2045
2261
 
2046
2262
 
2047
- <li class="odd ">
2263
+ <li class="even ">
2048
2264
  <div class="item">
2049
2265
  <span class='object_link'><a href="RRTF/ColourTable.html#to_s-instance_method" title="RRTF::ColourTable#to_s (method)">#to_s</a></span>
2050
2266
  <small>RRTF::ColourTable</small>
@@ -2052,15 +2268,15 @@
2052
2268
  </li>
2053
2269
 
2054
2270
 
2055
- <li class="even ">
2271
+ <li class="odd ">
2056
2272
  <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>
2273
+ <span class='object_link'><a href="RRTF/Font.html#to_s-instance_method" title="RRTF::Font#to_s (method)">#to_s</a></span>
2274
+ <small>RRTF::Font</small>
2059
2275
  </div>
2060
2276
  </li>
2061
2277
 
2062
2278
 
2063
- <li class="odd ">
2279
+ <li class="even ">
2064
2280
  <div class="item">
2065
2281
  <span class='object_link'><a href="RRTF/FontTable.html#to_s-instance_method" title="RRTF::FontTable#to_s (method)">#to_s</a></span>
2066
2282
  <small>RRTF::FontTable</small>
@@ -2068,15 +2284,15 @@
2068
2284
  </li>
2069
2285
 
2070
2286
 
2071
- <li class="even ">
2287
+ <li class="odd ">
2072
2288
  <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>
2289
+ <span class='object_link'><a href="RRTF/Page/Margin.html#top-instance_method" title="RRTF::Page::Margin#top (method)">#top</a></span>
2290
+ <small>RRTF::Page::Margin</small>
2075
2291
  </div>
2076
2292
  </li>
2077
2293
 
2078
2294
 
2079
- <li class="odd ">
2295
+ <li class="even ">
2080
2296
  <div class="item">
2081
2297
  <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
2298
  <small>RRTF::TableCellNode</small>
@@ -2084,7 +2300,7 @@
2084
2300
  </li>
2085
2301
 
2086
2302
 
2087
- <li class="even ">
2303
+ <li class="odd ">
2088
2304
  <div class="item">
2089
2305
  <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
2306
  <small>RRTF::TableCellNode</small>
@@ -2092,9 +2308,17 @@
2092
2308
  </li>
2093
2309
 
2094
2310
 
2311
+ <li class="even ">
2312
+ <div class="item">
2313
+ <span class='object_link'><a href="RRTF/FooterNode.html#type-instance_method" title="RRTF::FooterNode#type (method)">#type</a></span>
2314
+ <small>RRTF::FooterNode</small>
2315
+ </div>
2316
+ </li>
2317
+
2318
+
2095
2319
  <li class="odd ">
2096
2320
  <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>
2321
+ <span class='object_link'><a href="RRTF/ImageNode.html#type-instance_method" title="RRTF::ImageNode#type (method)">#type</a></span>
2098
2322
  <small>RRTF::ImageNode</small>
2099
2323
  </div>
2100
2324
  </li>
@@ -2102,13 +2326,21 @@
2102
2326
 
2103
2327
  <li class="even ">
2104
2328
  <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>
2329
+ <span class='object_link'><a href="RRTF/ListMarker.html#type-instance_method" title="RRTF::ListMarker#type (method)">#type</a></span>
2330
+ <small>RRTF::ListMarker</small>
2107
2331
  </div>
2108
2332
  </li>
2109
2333
 
2110
2334
 
2111
2335
  <li class="odd ">
2336
+ <div class="item">
2337
+ <span class='object_link'><a href="RRTF/HeaderNode.html#type-instance_method" title="RRTF::HeaderNode#type (method)">#type</a></span>
2338
+ <small>RRTF::HeaderNode</small>
2339
+ </div>
2340
+ </li>
2341
+
2342
+
2343
+ <li class="even ">
2112
2344
  <div class="item">
2113
2345
  <span class='object_link'><a href="RRTF/ListLevel.html#type-instance_method" title="RRTF::ListLevel#type (method)">#type</a></span>
2114
2346
  <small>RRTF::ListLevel</small>
@@ -2116,82 +2348,90 @@
2116
2348
  </li>
2117
2349
 
2118
2350
 
2351
+ <li class="odd ">
2352
+ <div class="item">
2353
+ <span class='object_link'><a href="RRTF/Utilities.html#value2emu-class_method" title="RRTF::Utilities.value2emu (method)">value2emu</a></span>
2354
+ <small>RRTF::Utilities</small>
2355
+ </div>
2356
+ </li>
2357
+
2358
+
2119
2359
  <li class="even ">
2120
2360
  <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>
2361
+ <span class='object_link'><a href="RRTF/Utilities.html#value2geombool-class_method" title="RRTF::Utilities.value2geombool (method)">value2geombool</a></span>
2362
+ <small>RRTF::Utilities</small>
2123
2363
  </div>
2124
2364
  </li>
2125
2365
 
2126
2366
 
2127
2367
  <li class="odd ">
2128
2368
  <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>
2369
+ <span class='object_link'><a href="RRTF/Utilities.html#value2geomfrac-class_method" title="RRTF::Utilities.value2geomfrac (method)">value2geomfrac</a></span>
2370
+ <small>RRTF::Utilities</small>
2131
2371
  </div>
2132
2372
  </li>
2133
2373
 
2134
2374
 
2135
2375
  <li class="even ">
2136
2376
  <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>
2377
+ <span class='object_link'><a href="RRTF/Utilities.html#value2halfpt-class_method" title="RRTF::Utilities.value2halfpt (method)">value2halfpt</a></span>
2378
+ <small>RRTF::Utilities</small>
2139
2379
  </div>
2140
2380
  </li>
2141
2381
 
2142
2382
 
2143
2383
  <li class="odd ">
2144
2384
  <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>
2385
+ <span class='object_link'><a href="RRTF/Utilities.html#value2hunpercent-class_method" title="RRTF::Utilities.value2hunpercent (method)">value2hunpercent</a></span>
2386
+ <small>RRTF::Utilities</small>
2147
2387
  </div>
2148
2388
  </li>
2149
2389
 
2150
2390
 
2151
2391
  <li class="even ">
2152
2392
  <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>
2393
+ <span class='object_link'><a href="RRTF/Utilities.html#value2quarterpt-class_method" title="RRTF::Utilities.value2quarterpt (method)">value2quarterpt</a></span>
2394
+ <small>RRTF::Utilities</small>
2155
2395
  </div>
2156
2396
  </li>
2157
2397
 
2158
2398
 
2159
2399
  <li class="odd ">
2160
2400
  <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>
2401
+ <span class='object_link'><a href="RRTF/Utilities.html#value2twips-class_method" title="RRTF::Utilities.value2twips (method)">value2twips</a></span>
2402
+ <small>RRTF::Utilities</small>
2163
2403
  </div>
2164
2404
  </li>
2165
2405
 
2166
2406
 
2167
2407
  <li class="even ">
2168
2408
  <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>
2409
+ <span class='object_link'><a href="RRTF/Page/Size.html#width-instance_method" title="RRTF::Page::Size#width (method)">#width</a></span>
2410
+ <small>RRTF::Page::Size</small>
2171
2411
  </div>
2172
2412
  </li>
2173
2413
 
2174
2414
 
2175
2415
  <li class="odd ">
2176
2416
  <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>
2417
+ <span class='object_link'><a href="RRTF/ImageNode.html#width-instance_method" title="RRTF::ImageNode#width (method)">#width</a></span>
2418
+ <small>RRTF::ImageNode</small>
2179
2419
  </div>
2180
2420
  </li>
2181
2421
 
2182
2422
 
2183
2423
  <li class="even ">
2184
2424
  <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>
2425
+ <span class='object_link'><a href="RRTF/TableCellNode.html#width-instance_method" title="RRTF::TableCellNode#width (method)">#width</a></span>
2426
+ <small>RRTF::TableCellNode</small>
2187
2427
  </div>
2188
2428
  </li>
2189
2429
 
2190
2430
 
2191
2431
  <li class="odd ">
2192
2432
  <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>
2433
+ <span class='object_link'><a href="RRTF/CommandNode.html#wrap-instance_method" title="RRTF::CommandNode#wrap (method)">#wrap</a></span>
2434
+ <small>RRTF::CommandNode</small>
2195
2435
  </div>
2196
2436
  </li>
2197
2437