html2rss 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +53 -2
  3. data/Gemfile.lock +10 -7
  4. data/docs/Html2rss.html +3 -3
  5. data/docs/Html2rss/AttributePostProcessors.html +6 -6
  6. data/docs/Html2rss/AttributePostProcessors/HtmlToMarkdown.html +325 -0
  7. data/docs/Html2rss/AttributePostProcessors/ParseTime.html +12 -18
  8. data/docs/Html2rss/AttributePostProcessors/ParseUri.html +4 -4
  9. data/docs/Html2rss/AttributePostProcessors/SanitizeHtml.html +38 -17
  10. data/docs/Html2rss/AttributePostProcessors/Substring.html +5 -5
  11. data/docs/Html2rss/AttributePostProcessors/Template.html +6 -6
  12. data/docs/Html2rss/Config.html +75 -23
  13. data/docs/Html2rss/FeedBuilder.html +1 -1
  14. data/docs/Html2rss/Item.html +14 -8
  15. data/docs/Html2rss/ItemExtractors.html +1 -1
  16. data/docs/Html2rss/ItemExtractors/Attribute.html +1 -1
  17. data/docs/Html2rss/ItemExtractors/CurrentTime.html +1 -1
  18. data/docs/Html2rss/ItemExtractors/Href.html +2 -2
  19. data/docs/Html2rss/ItemExtractors/Html.html +1 -1
  20. data/docs/Html2rss/ItemExtractors/Static.html +1 -1
  21. data/docs/Html2rss/ItemExtractors/Text.html +1 -1
  22. data/docs/Html2rss/Utils.html +86 -1
  23. data/docs/Html2rss/Utils/IndifferentAccessHash.html +1 -1
  24. data/docs/_index.html +8 -1
  25. data/docs/class_list.html +1 -1
  26. data/docs/file.README.html +1 -1
  27. data/docs/index.html +1 -1
  28. data/docs/method_list.html +69 -37
  29. data/docs/top-level-namespace.html +1 -1
  30. data/html2rss.gemspec +1 -0
  31. data/lib/html2rss/attribute_post_processors.rb +1 -0
  32. data/lib/html2rss/attribute_post_processors/html_to_markdown.rb +39 -0
  33. data/lib/html2rss/utils.rb +3 -4
  34. data/lib/html2rss/version.rb +1 -1
  35. metadata +19 -5
  36. data/.changelogrc +0 -19
@@ -285,7 +285,7 @@
285
285
  </div>
286
286
 
287
287
  <div id="footer">
288
- Generated on Sun Jul 14 19:35:05 2019 by
288
+ Generated on Wed Sep 18 12:52:16 2019 by
289
289
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
290
290
  0.9.20 (ruby-2.6.3).
291
291
  </div>
@@ -424,15 +424,15 @@
424
424
  <pre class="lines">
425
425
 
426
426
 
427
- 48
428
- 49
429
- 50
430
427
  51
431
428
  52
432
- 53</pre>
429
+ 53
430
+ 54
431
+ 55
432
+ 56</pre>
433
433
  </td>
434
434
  <td>
435
- <pre class="code"><span class="info file"># File 'lib/html2rss/item.rb', line 48</span>
435
+ <pre class="code"><span class="info file"># File 'lib/html2rss/item.rb', line 51</span>
436
436
 
437
437
  <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_from_url'>from_url</span><span class='lparen'>(</span><span class='id identifier rubyid_url'>url</span><span class='comma'>,</span> <span class='id identifier rubyid_config'>config</span><span class='rparen'>)</span>
438
438
  <span class='id identifier rubyid_page'>page</span> <span class='op'>=</span> <span class='const'>Nokogiri</span><span class='op'>::</span><span class='const'>HTML</span><span class='lparen'>(</span><span class='id identifier rubyid_get_body_from_url'>get_body_from_url</span><span class='lparen'>(</span><span class='id identifier rubyid_url'>url</span><span class='comma'>,</span> <span class='id identifier rubyid_config'>config</span><span class='period'>.</span><span class='id identifier rubyid_headers'>headers</span><span class='rparen'>)</span><span class='rparen'>)</span>
@@ -522,13 +522,19 @@
522
522
 
523
523
  42
524
524
  43
525
- 44</pre>
525
+ 44
526
+ 45
527
+ 46
528
+ 47</pre>
526
529
  </td>
527
530
  <td>
528
531
  <pre class="code"><span class="info file"># File 'lib/html2rss/item.rb', line 42</span>
529
532
 
530
533
  <span class='kw'>def</span> <span class='id identifier rubyid_categories'>categories</span>
531
- <span class='id identifier rubyid_config'>config</span><span class='period'>.</span><span class='id identifier rubyid_categories'>categories</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span><span class='lparen'>(</span><span class='op'>&amp;</span><span class='id identifier rubyid_method'>method</span><span class='lparen'>(</span><span class='symbol'>:method_missing</span><span class='rparen'>)</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_uniq'>uniq</span><span class='period'>.</span><span class='id identifier rubyid_keep_if'>keep_if</span> <span class='lbrace'>{</span> <span class='op'>|</span><span class='id identifier rubyid_category'>category</span><span class='op'>|</span> <span class='id identifier rubyid_category'>category</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span> <span class='op'>!=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_end'>&#39;</span></span> <span class='rbrace'>}</span>
534
+ <span class='id identifier rubyid_categories'>categories</span> <span class='op'>=</span> <span class='id identifier rubyid_config'>config</span><span class='period'>.</span><span class='id identifier rubyid_categories'>categories</span>
535
+ <span class='id identifier rubyid_categories'>categories</span><span class='period'>.</span><span class='id identifier rubyid_map!'>map!</span><span class='lparen'>(</span><span class='op'>&amp;</span><span class='id identifier rubyid_method'>method</span><span class='lparen'>(</span><span class='symbol'>:method_missing</span><span class='rparen'>)</span><span class='rparen'>)</span>
536
+ <span class='id identifier rubyid_categories'>categories</span><span class='period'>.</span><span class='id identifier rubyid_uniq!'>uniq!</span>
537
+ <span class='id identifier rubyid_categories'>categories</span><span class='period'>.</span><span class='id identifier rubyid_keep_if'>keep_if</span> <span class='lbrace'>{</span> <span class='op'>|</span><span class='id identifier rubyid_category'>category</span><span class='op'>|</span> <span class='id identifier rubyid_category'>category</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span> <span class='op'>!=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_end'>&#39;</span></span> <span class='rbrace'>}</span>
532
538
  <span class='kw'>end</span></pre>
533
539
  </td>
534
540
  </tr>
@@ -644,7 +650,7 @@
644
650
  </div>
645
651
 
646
652
  <div id="footer">
647
- Generated on Sun Jul 14 19:35:05 2019 by
653
+ Generated on Wed Sep 18 12:52:16 2019 by
648
654
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
649
655
  0.9.20 (ruby-2.6.3).
650
656
  </div>
@@ -287,7 +287,7 @@
287
287
  </div>
288
288
 
289
289
  <div id="footer">
290
- Generated on Sun Jul 14 19:35:05 2019 by
290
+ Generated on Wed Sep 18 12:52:16 2019 by
291
291
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
292
292
  0.9.20 (ruby-2.6.3).
293
293
  </div>
@@ -307,7 +307,7 @@
307
307
  </div>
308
308
 
309
309
  <div id="footer">
310
- Generated on Sun Jul 14 19:35:05 2019 by
310
+ Generated on Wed Sep 18 12:52:16 2019 by
311
311
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
312
312
  0.9.20 (ruby-2.6.3).
313
313
  </div>
@@ -287,7 +287,7 @@
287
287
  </div>
288
288
 
289
289
  <div id="footer">
290
- Generated on Sun Jul 14 19:35:06 2019 by
290
+ Generated on Wed Sep 18 12:52:16 2019 by
291
291
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
292
292
  0.9.20 (ruby-2.6.3).
293
293
  </div>
@@ -297,7 +297,7 @@ selectors:
297
297
  <pre class="code"><span class="info file"># File 'lib/html2rss/item_extractors/href.rb', line 31</span>
298
298
 
299
299
  <span class='kw'>def</span> <span class='id identifier rubyid_get'>get</span>
300
- <span class='id identifier rubyid_href'>href</span><span class='period'>.</span><span class='id identifier rubyid_start_with?'>start_with?</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>http</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_absolute_url'>absolute_url</span> <span class='op'>:</span> <span class='id identifier rubyid_build_absolute_url_from_relative'>build_absolute_url_from_relative</span>
300
+ <span class='const'><span class='object_link'><a href="../../Html2rss.html" title="Html2rss (module)">Html2rss</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../Utils.html" title="Html2rss::Utils (module)">Utils</a></span></span><span class='period'>.</span><span class='id identifier rubyid_build_absolute_url_from_relative'><span class='object_link'><a href="../Utils.html#build_absolute_url_from_relative-class_method" title="Html2rss::Utils.build_absolute_url_from_relative (method)">build_absolute_url_from_relative</a></span></span><span class='lparen'>(</span><span class='ivar'>@href</span><span class='comma'>,</span> <span class='ivar'>@options</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>channel</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>url</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
301
301
  <span class='kw'>end</span></pre>
302
302
  </td>
303
303
  </tr>
@@ -309,7 +309,7 @@ selectors:
309
309
  </div>
310
310
 
311
311
  <div id="footer">
312
- Generated on Sun Jul 14 19:35:05 2019 by
312
+ Generated on Wed Sep 18 12:52:16 2019 by
313
313
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
314
314
  0.9.20 (ruby-2.6.3).
315
315
  </div>
@@ -304,7 +304,7 @@
304
304
  </div>
305
305
 
306
306
  <div id="footer">
307
- Generated on Sun Jul 14 19:35:05 2019 by
307
+ Generated on Wed Sep 18 12:52:16 2019 by
308
308
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
309
309
  0.9.20 (ruby-2.6.3).
310
310
  </div>
@@ -291,7 +291,7 @@
291
291
  </div>
292
292
 
293
293
  <div id="footer">
294
- Generated on Sun Jul 14 19:35:05 2019 by
294
+ Generated on Wed Sep 18 12:52:16 2019 by
295
295
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
296
296
  0.9.20 (ruby-2.6.3).
297
297
  </div>
@@ -302,7 +302,7 @@
302
302
  </div>
303
303
 
304
304
  <div id="footer">
305
- Generated on Sun Jul 14 19:35:05 2019 by
305
+ Generated on Wed Sep 18 12:52:16 2019 by
306
306
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
307
307
  0.9.20 (ruby-2.6.3).
308
308
  </div>
@@ -100,12 +100,97 @@
100
100
 
101
101
 
102
102
 
103
+
104
+ <h2>
105
+ Class Method Summary
106
+ <small><a href="#" class="summary_toggle">collapse</a></small>
107
+ </h2>
108
+
109
+ <ul class="summary">
110
+
111
+ <li class="public ">
112
+ <span class="summary_signature">
113
+
114
+ <a href="#build_absolute_url_from_relative-class_method" title="build_absolute_url_from_relative (class method)">.<strong>build_absolute_url_from_relative</strong>(url, channel_url) &#x21d2; Object </a>
115
+
116
+
117
+
118
+ </span>
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <span class="summary_desc"><div class='inline'></div></span>
129
+
130
+ </li>
131
+
132
+
133
+ </ul>
134
+
103
135
 
104
136
 
137
+
138
+ <div id="class_method_details" class="method_details_list">
139
+ <h2>Class Method Details</h2>
140
+
141
+
142
+ <div class="method_details first">
143
+ <h3 class="signature first" id="build_absolute_url_from_relative-class_method">
144
+
145
+ .<strong>build_absolute_url_from_relative</strong>(url, channel_url) &#x21d2; <tt>Object</tt>
146
+
147
+
148
+
149
+
150
+
151
+ </h3><table class="source_code">
152
+ <tr>
153
+ <td>
154
+ <pre class="lines">
155
+
156
+
157
+ 12
158
+ 13
159
+ 14
160
+ 15
161
+ 16
162
+ 17
163
+ 18
164
+ 19
165
+ 20
166
+ 21
167
+ 22</pre>
168
+ </td>
169
+ <td>
170
+ <pre class="code"><span class="info file"># File 'lib/html2rss/utils.rb', line 12</span>
171
+
172
+ <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_build_absolute_url_from_relative'>build_absolute_url_from_relative</span><span class='lparen'>(</span><span class='id identifier rubyid_url'>url</span><span class='comma'>,</span> <span class='id identifier rubyid_channel_url'>channel_url</span><span class='rparen'>)</span>
173
+ <span class='id identifier rubyid_url'>url</span> <span class='op'>=</span> <span class='const'>URI</span><span class='lparen'>(</span><span class='id identifier rubyid_url'>url</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span><span class='lparen'>(</span><span class='const'>String</span><span class='rparen'>)</span>
174
+
175
+ <span class='kw'>return</span> <span class='id identifier rubyid_url'>url</span> <span class='kw'>if</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_absolute?'>absolute?</span>
176
+
177
+ <span class='const'>URI</span><span class='lparen'>(</span><span class='id identifier rubyid_channel_url'>channel_url</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_tap'>tap</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_uri'>uri</span><span class='op'>|</span>
178
+ <span class='id identifier rubyid_uri'>uri</span><span class='period'>.</span><span class='id identifier rubyid_path'>path</span> <span class='op'>=</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_path'>path</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='period'>.</span><span class='id identifier rubyid_start_with?'>start_with?</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>/</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_path'>path</span> <span class='op'>:</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>/</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_path'>path</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
179
+ <span class='id identifier rubyid_uri'>uri</span><span class='period'>.</span><span class='id identifier rubyid_query'>query</span> <span class='op'>=</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_query'>query</span>
180
+ <span class='id identifier rubyid_uri'>uri</span><span class='period'>.</span><span class='id identifier rubyid_fragment'>fragment</span> <span class='op'>=</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_fragment'>fragment</span> <span class='kw'>if</span> <span class='id identifier rubyid_url'>url</span><span class='period'>.</span><span class='id identifier rubyid_fragment'>fragment</span>
181
+ <span class='kw'>end</span>
182
+ <span class='kw'>end</span></pre>
183
+ </td>
184
+ </tr>
185
+ </table>
186
+ </div>
187
+
188
+ </div>
189
+
105
190
  </div>
106
191
 
107
192
  <div id="footer">
108
- Generated on Sun Jul 14 19:35:05 2019 by
193
+ Generated on Wed Sep 18 12:52:16 2019 by
109
194
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
195
  0.9.20 (ruby-2.6.3).
111
196
  </div>
@@ -132,7 +132,7 @@
132
132
  </div>
133
133
 
134
134
  <div id="footer">
135
- Generated on Sun Jul 14 19:35:05 2019 by
135
+ Generated on Wed Sep 18 12:52:16 2019 by
136
136
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
137
137
  0.9.20 (ruby-2.6.3).
138
138
  </div>
@@ -158,6 +158,13 @@
158
158
 
159
159
  </li>
160
160
 
161
+ <li>
162
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/HtmlToMarkdown.html" title="Html2rss::AttributePostProcessors::HtmlToMarkdown (class)">HtmlToMarkdown</a></span>
163
+
164
+ <small>(Html2rss::AttributePostProcessors)</small>
165
+
166
+ </li>
167
+
161
168
  </ul>
162
169
  </ul>
163
170
 
@@ -290,7 +297,7 @@
290
297
  </div>
291
298
 
292
299
  <div id="footer">
293
- Generated on Sun Jul 14 19:35:05 2019 by
300
+ Generated on Wed Sep 18 12:52:15 2019 by
294
301
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
295
302
  0.9.20 (ruby-2.6.3).
296
303
  </div>
@@ -43,7 +43,7 @@
43
43
 
44
44
  <ul id="full_list" class="class">
45
45
  <li id="object_" class="odd"><div class="item" style="padding-left:30px"><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></div></li>
46
- <li id='object_Html2rss' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss.html" title="Html2rss (module)">Html2rss</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Html2rss::AttributePostProcessors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/AttributePostProcessors.html" title="Html2rss::AttributePostProcessors (module)">AttributePostProcessors</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::AttributePostProcessors::ParseTime' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseTime.html" title="Html2rss::AttributePostProcessors::ParseTime (class)">ParseTime</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::ParseUri' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseUri.html" title="Html2rss::AttributePostProcessors::ParseUri (class)">ParseUri</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::SanitizeHtml' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html" title="Html2rss::AttributePostProcessors::SanitizeHtml (class)">SanitizeHtml</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::Substring' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/Substring.html" title="Html2rss::AttributePostProcessors::Substring (class)">Substring</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::Template' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/Template.html" title="Html2rss::AttributePostProcessors::Template (class)">Template</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li></ul></li><li id='object_Html2rss::Config' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/Config.html" title="Html2rss::Config (class)">Config</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::FeedBuilder' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/FeedBuilder.html" title="Html2rss::FeedBuilder (class)">FeedBuilder</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::Item' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/Item.html" title="Html2rss::Item (class)">Item</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::ItemExtractors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/ItemExtractors.html" title="Html2rss::ItemExtractors (module)">ItemExtractors</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::ItemExtractors::Attribute' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Attribute.html" title="Html2rss::ItemExtractors::Attribute (class)">Attribute</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::CurrentTime' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/CurrentTime.html" title="Html2rss::ItemExtractors::CurrentTime (class)">CurrentTime</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Href' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Href.html" title="Html2rss::ItemExtractors::Href (class)">Href</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Html' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Html.html" title="Html2rss::ItemExtractors::Html (class)">Html</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Static' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Static.html" title="Html2rss::ItemExtractors::Static (class)">Static</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Text' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Text.html" title="Html2rss::ItemExtractors::Text (class)">Text</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li></ul></li><li id='object_Html2rss::Utils' class='collapsed even'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/Utils.html" title="Html2rss::Utils (module)">Utils</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::Utils::IndifferentAccessHash' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/Utils/IndifferentAccessHash.html" title="Html2rss::Utils::IndifferentAccessHash (class)">IndifferentAccessHash</a></span> &lt; Hash<small class='search_info'>Html2rss::Utils</small></div></li></ul></li></ul></li>
46
+ <li id='object_Html2rss' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss.html" title="Html2rss (module)">Html2rss</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Html2rss::AttributePostProcessors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/AttributePostProcessors.html" title="Html2rss::AttributePostProcessors (module)">AttributePostProcessors</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::AttributePostProcessors::HtmlToMarkdown' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/HtmlToMarkdown.html" title="Html2rss::AttributePostProcessors::HtmlToMarkdown (class)">HtmlToMarkdown</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::ParseTime' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseTime.html" title="Html2rss::AttributePostProcessors::ParseTime (class)">ParseTime</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::ParseUri' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseUri.html" title="Html2rss::AttributePostProcessors::ParseUri (class)">ParseUri</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::SanitizeHtml' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html" title="Html2rss::AttributePostProcessors::SanitizeHtml (class)">SanitizeHtml</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::Substring' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/Substring.html" title="Html2rss::AttributePostProcessors::Substring (class)">Substring</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li><li id='object_Html2rss::AttributePostProcessors::Template' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/AttributePostProcessors/Template.html" title="Html2rss::AttributePostProcessors::Template (class)">Template</a></span> &lt; Object<small class='search_info'>Html2rss::AttributePostProcessors</small></div></li></ul></li><li id='object_Html2rss::Config' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/Config.html" title="Html2rss::Config (class)">Config</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::FeedBuilder' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/FeedBuilder.html" title="Html2rss::FeedBuilder (class)">FeedBuilder</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::Item' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Html2rss/Item.html" title="Html2rss::Item (class)">Item</a></span> &lt; Object<small class='search_info'>Html2rss</small></div></li><li id='object_Html2rss::ItemExtractors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/ItemExtractors.html" title="Html2rss::ItemExtractors (module)">ItemExtractors</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::ItemExtractors::Attribute' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Attribute.html" title="Html2rss::ItemExtractors::Attribute (class)">Attribute</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::CurrentTime' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/CurrentTime.html" title="Html2rss::ItemExtractors::CurrentTime (class)">CurrentTime</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Href' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Href.html" title="Html2rss::ItemExtractors::Href (class)">Href</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Html' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Html.html" title="Html2rss::ItemExtractors::Html (class)">Html</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Static' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Static.html" title="Html2rss::ItemExtractors::Static (class)">Static</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li><li id='object_Html2rss::ItemExtractors::Text' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/ItemExtractors/Text.html" title="Html2rss::ItemExtractors::Text (class)">Text</a></span> &lt; Object<small class='search_info'>Html2rss::ItemExtractors</small></div></li></ul></li><li id='object_Html2rss::Utils' class='collapsed even'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Html2rss/Utils.html" title="Html2rss::Utils (module)">Utils</a></span><small class='search_info'>Html2rss</small></div><ul><li id='object_Html2rss::Utils::IndifferentAccessHash' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Html2rss/Utils/IndifferentAccessHash.html" title="Html2rss::Utils::IndifferentAccessHash (class)">IndifferentAccessHash</a></span> &lt; Hash<small class='search_info'>Html2rss::Utils</small></div></li></ul></li></ul></li>
47
47
 
48
48
  </ul>
49
49
  </div>
@@ -125,7 +125,7 @@
125
125
  </div></div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Sun Jul 14 19:35:05 2019 by
128
+ Generated on Wed Sep 18 12:52:16 2019 by
129
129
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
130
  0.9.20 (ruby-2.6.3).
131
131
  </div>
@@ -125,7 +125,7 @@
125
125
  </div></div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Sun Jul 14 19:35:05 2019 by
128
+ Generated on Wed Sep 18 12:52:16 2019 by
129
129
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
130
  0.9.20 (ruby-2.6.3).
131
131
  </div>
@@ -69,6 +69,14 @@
69
69
 
70
70
 
71
71
  <li class="even ">
72
+ <div class="item">
73
+ <span class='object_link'><a href="Html2rss/Utils.html#build_absolute_url_from_relative-class_method" title="Html2rss::Utils.build_absolute_url_from_relative (method)">build_absolute_url_from_relative</a></span>
74
+ <small>Html2rss::Utils</small>
75
+ </div>
76
+ </li>
77
+
78
+
79
+ <li class="odd ">
72
80
  <div class="item">
73
81
  <span class='object_link'><a href="Html2rss/Config.html#categories-instance_method" title="Html2rss::Config#categories (method)">#categories</a></span>
74
82
  <small>Html2rss::Config</small>
@@ -76,7 +84,7 @@
76
84
  </li>
77
85
 
78
86
 
79
- <li class="odd ">
87
+ <li class="even ">
80
88
  <div class="item">
81
89
  <span class='object_link'><a href="Html2rss/Item.html#categories-instance_method" title="Html2rss::Item#categories (method)">#categories</a></span>
82
90
  <small>Html2rss::Item</small>
@@ -84,7 +92,7 @@
84
92
  </li>
85
93
 
86
94
 
87
- <li class="even ">
95
+ <li class="odd ">
88
96
  <div class="item">
89
97
  <span class='object_link'><a href="Html2rss/Config.html#description-instance_method" title="Html2rss::Config#description (method)">#description</a></span>
90
98
  <small>Html2rss::Config</small>
@@ -92,7 +100,7 @@
92
100
  </li>
93
101
 
94
102
 
95
- <li class="odd ">
103
+ <li class="even ">
96
104
  <div class="item">
97
105
  <span class='object_link'><a href="Html2rss/ItemExtractors.html#element-class_method" title="Html2rss::ItemExtractors.element (method)">element</a></span>
98
106
  <small>Html2rss::ItemExtractors</small>
@@ -100,7 +108,7 @@
100
108
  </li>
101
109
 
102
110
 
103
- <li class="even ">
111
+ <li class="odd ">
104
112
  <div class="item">
105
113
  <span class='object_link'><a href="Html2rss.html#feed-class_method" title="Html2rss.feed (method)">feed</a></span>
106
114
  <small>Html2rss</small>
@@ -108,7 +116,7 @@
108
116
  </li>
109
117
 
110
118
 
111
- <li class="odd ">
119
+ <li class="even ">
112
120
  <div class="item">
113
121
  <span class='object_link'><a href="Html2rss.html#feed_from_yaml_config-class_method" title="Html2rss.feed_from_yaml_config (method)">feed_from_yaml_config</a></span>
114
122
  <small>Html2rss</small>
@@ -116,7 +124,7 @@
116
124
  </li>
117
125
 
118
126
 
119
- <li class="even ">
127
+ <li class="odd ">
120
128
  <div class="item">
121
129
  <span class='object_link'><a href="Html2rss/Item.html#from_url-class_method" title="Html2rss::Item.from_url (method)">from_url</a></span>
122
130
  <small>Html2rss::Item</small>
@@ -124,15 +132,15 @@
124
132
  </li>
125
133
 
126
134
 
127
- <li class="odd ">
135
+ <li class="even ">
128
136
  <div class="item">
129
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html#get-instance_method" title="Html2rss::AttributePostProcessors::SanitizeHtml#get (method)">#get</a></span>
130
- <small>Html2rss::AttributePostProcessors::SanitizeHtml</small>
137
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/HtmlToMarkdown.html#get-instance_method" title="Html2rss::AttributePostProcessors::HtmlToMarkdown#get (method)">#get</a></span>
138
+ <small>Html2rss::AttributePostProcessors::HtmlToMarkdown</small>
131
139
  </div>
132
140
  </li>
133
141
 
134
142
 
135
- <li class="even ">
143
+ <li class="odd ">
136
144
  <div class="item">
137
145
  <span class='object_link'><a href="Html2rss/ItemExtractors/Href.html#get-instance_method" title="Html2rss::ItemExtractors::Href#get (method)">#get</a></span>
138
146
  <small>Html2rss::ItemExtractors::Href</small>
@@ -140,7 +148,7 @@
140
148
  </li>
141
149
 
142
150
 
143
- <li class="odd ">
151
+ <li class="even ">
144
152
  <div class="item">
145
153
  <span class='object_link'><a href="Html2rss/ItemExtractors/Html.html#get-instance_method" title="Html2rss::ItemExtractors::Html#get (method)">#get</a></span>
146
154
  <small>Html2rss::ItemExtractors::Html</small>
@@ -148,7 +156,7 @@
148
156
  </li>
149
157
 
150
158
 
151
- <li class="even ">
159
+ <li class="odd ">
152
160
  <div class="item">
153
161
  <span class='object_link'><a href="Html2rss/ItemExtractors/Text.html#get-instance_method" title="Html2rss::ItemExtractors::Text#get (method)">#get</a></span>
154
162
  <small>Html2rss::ItemExtractors::Text</small>
@@ -156,7 +164,7 @@
156
164
  </li>
157
165
 
158
166
 
159
- <li class="odd ">
167
+ <li class="even ">
160
168
  <div class="item">
161
169
  <span class='object_link'><a href="Html2rss/ItemExtractors/Static.html#get-instance_method" title="Html2rss::ItemExtractors::Static#get (method)">#get</a></span>
162
170
  <small>Html2rss::ItemExtractors::Static</small>
@@ -164,7 +172,7 @@
164
172
  </li>
165
173
 
166
174
 
167
- <li class="even ">
175
+ <li class="odd ">
168
176
  <div class="item">
169
177
  <span class='object_link'><a href="Html2rss/ItemExtractors/Attribute.html#get-instance_method" title="Html2rss::ItemExtractors::Attribute#get (method)">#get</a></span>
170
178
  <small>Html2rss::ItemExtractors::Attribute</small>
@@ -172,7 +180,7 @@
172
180
  </li>
173
181
 
174
182
 
175
- <li class="odd ">
183
+ <li class="even ">
176
184
  <div class="item">
177
185
  <span class='object_link'><a href="Html2rss/ItemExtractors/CurrentTime.html#get-instance_method" title="Html2rss::ItemExtractors::CurrentTime#get (method)">#get</a></span>
178
186
  <small>Html2rss::ItemExtractors::CurrentTime</small>
@@ -180,7 +188,7 @@
180
188
  </li>
181
189
 
182
190
 
183
- <li class="even ">
191
+ <li class="odd ">
184
192
  <div class="item">
185
193
  <span class='object_link'><a href="Html2rss/AttributePostProcessors/Template.html#get-instance_method" title="Html2rss::AttributePostProcessors::Template#get (method)">#get</a></span>
186
194
  <small>Html2rss::AttributePostProcessors::Template</small>
@@ -188,7 +196,7 @@
188
196
  </li>
189
197
 
190
198
 
191
- <li class="odd ">
199
+ <li class="even ">
192
200
  <div class="item">
193
201
  <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseUri.html#get-instance_method" title="Html2rss::AttributePostProcessors::ParseUri#get (method)">#get</a></span>
194
202
  <small>Html2rss::AttributePostProcessors::ParseUri</small>
@@ -196,7 +204,7 @@
196
204
  </li>
197
205
 
198
206
 
199
- <li class="even ">
207
+ <li class="odd ">
200
208
  <div class="item">
201
209
  <span class='object_link'><a href="Html2rss/AttributePostProcessors/Substring.html#get-instance_method" title="Html2rss::AttributePostProcessors::Substring#get (method)">#get</a></span>
202
210
  <small>Html2rss::AttributePostProcessors::Substring</small>
@@ -204,7 +212,7 @@
204
212
  </li>
205
213
 
206
214
 
207
- <li class="odd ">
215
+ <li class="even ">
208
216
  <div class="item">
209
217
  <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseTime.html#get-instance_method" title="Html2rss::AttributePostProcessors::ParseTime#get (method)">#get</a></span>
210
218
  <small>Html2rss::AttributePostProcessors::ParseTime</small>
@@ -212,6 +220,14 @@
212
220
  </li>
213
221
 
214
222
 
223
+ <li class="odd ">
224
+ <div class="item">
225
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html#get-instance_method" title="Html2rss::AttributePostProcessors::SanitizeHtml#get (method)">#get</a></span>
226
+ <small>Html2rss::AttributePostProcessors::SanitizeHtml</small>
227
+ </div>
228
+ </li>
229
+
230
+
215
231
  <li class="even ">
216
232
  <div class="item">
217
233
  <span class='object_link'><a href="Html2rss/ItemExtractors.html#get_extractor-class_method" title="Html2rss::ItemExtractors.get_extractor (method)">get_extractor</a></span>
@@ -246,8 +262,8 @@
246
262
 
247
263
  <li class="even ">
248
264
  <div class="item">
249
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseTime.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::ParseTime#initialize (method)">#initialize</a></span>
250
- <small>Html2rss::AttributePostProcessors::ParseTime</small>
265
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseUri.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::ParseUri#initialize (method)">#initialize</a></span>
266
+ <small>Html2rss::AttributePostProcessors::ParseUri</small>
251
267
  </div>
252
268
  </li>
253
269
 
@@ -262,8 +278,8 @@
262
278
 
263
279
  <li class="even ">
264
280
  <div class="item">
265
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseUri.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::ParseUri#initialize (method)">#initialize</a></span>
266
- <small>Html2rss::AttributePostProcessors::ParseUri</small>
281
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::SanitizeHtml#initialize (method)">#initialize</a></span>
282
+ <small>Html2rss::AttributePostProcessors::SanitizeHtml</small>
267
283
  </div>
268
284
  </li>
269
285
 
@@ -278,8 +294,8 @@
278
294
 
279
295
  <li class="even ">
280
296
  <div class="item">
281
- <span class='object_link'><a href="Html2rss/Item.html#initialize-instance_method" title="Html2rss::Item#initialize (method)">#initialize</a></span>
282
- <small>Html2rss::Item</small>
297
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/Substring.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::Substring#initialize (method)">#initialize</a></span>
298
+ <small>Html2rss::AttributePostProcessors::Substring</small>
283
299
  </div>
284
300
  </li>
285
301
 
@@ -302,8 +318,8 @@
302
318
 
303
319
  <li class="odd ">
304
320
  <div class="item">
305
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/Template.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::Template#initialize (method)">#initialize</a></span>
306
- <small>Html2rss::AttributePostProcessors::Template</small>
321
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/HtmlToMarkdown.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::HtmlToMarkdown#initialize (method)">#initialize</a></span>
322
+ <small>Html2rss::AttributePostProcessors::HtmlToMarkdown</small>
307
323
  </div>
308
324
  </li>
309
325
 
@@ -318,8 +334,8 @@
318
334
 
319
335
  <li class="odd ">
320
336
  <div class="item">
321
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/Substring.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::Substring#initialize (method)">#initialize</a></span>
322
- <small>Html2rss::AttributePostProcessors::Substring</small>
337
+ <span class='object_link'><a href="Html2rss/Item.html#initialize-instance_method" title="Html2rss::Item#initialize (method)">#initialize</a></span>
338
+ <small>Html2rss::Item</small>
323
339
  </div>
324
340
  </li>
325
341
 
@@ -334,13 +350,21 @@
334
350
 
335
351
  <li class="odd ">
336
352
  <div class="item">
337
- <span class='object_link'><a href="Html2rss/AttributePostProcessors/SanitizeHtml.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::SanitizeHtml#initialize (method)">#initialize</a></span>
338
- <small>Html2rss::AttributePostProcessors::SanitizeHtml</small>
353
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/ParseTime.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::ParseTime#initialize (method)">#initialize</a></span>
354
+ <small>Html2rss::AttributePostProcessors::ParseTime</small>
339
355
  </div>
340
356
  </li>
341
357
 
342
358
 
343
359
  <li class="even ">
360
+ <div class="item">
361
+ <span class='object_link'><a href="Html2rss/AttributePostProcessors/Template.html#initialize-instance_method" title="Html2rss::AttributePostProcessors::Template#initialize (method)">#initialize</a></span>
362
+ <small>Html2rss::AttributePostProcessors::Template</small>
363
+ </div>
364
+ </li>
365
+
366
+
367
+ <li class="odd ">
344
368
  <div class="item">
345
369
  <span class='object_link'><a href="Html2rss/Config.html#initialize-instance_method" title="Html2rss::Config#initialize (method)">#initialize</a></span>
346
370
  <small>Html2rss::Config</small>
@@ -348,7 +372,7 @@
348
372
  </li>
349
373
 
350
374
 
351
- <li class="odd ">
375
+ <li class="even ">
352
376
  <div class="item">
353
377
  <span class='object_link'><a href="Html2rss/Config.html#language-instance_method" title="Html2rss::Config#language (method)">#language</a></span>
354
378
  <small>Html2rss::Config</small>
@@ -356,7 +380,7 @@
356
380
  </li>
357
381
 
358
382
 
359
- <li class="even ">
383
+ <li class="odd ">
360
384
  <div class="item">
361
385
  <span class='object_link'><a href="Html2rss/Item.html#method_missing-instance_method" title="Html2rss::Item#method_missing (method)">#method_missing</a></span>
362
386
  <small>Html2rss::Item</small>
@@ -364,7 +388,7 @@
364
388
  </li>
365
389
 
366
390
 
367
- <li class="odd ">
391
+ <li class="even ">
368
392
  <div class="item">
369
393
  <span class='object_link'><a href="Html2rss/Config.html#options-instance_method" title="Html2rss::Config#options (method)">#options</a></span>
370
394
  <small>Html2rss::Config</small>
@@ -372,7 +396,7 @@
372
396
  </li>
373
397
 
374
398
 
375
- <li class="even ">
399
+ <li class="odd ">
376
400
  <div class="item">
377
401
  <span class='object_link'><a href="Html2rss/Item.html#respond_to_missing%3F-instance_method" title="Html2rss::Item#respond_to_missing? (method)">#respond_to_missing?</a></span>
378
402
  <small>Html2rss::Item</small>
@@ -380,7 +404,7 @@
380
404
  </li>
381
405
 
382
406
 
383
- <li class="odd ">
407
+ <li class="even ">
384
408
  <div class="item">
385
409
  <span class='object_link'><a href="Html2rss/FeedBuilder.html#rss-instance_method" title="Html2rss::FeedBuilder#rss (method)">#rss</a></span>
386
410
  <small>Html2rss::FeedBuilder</small>
@@ -388,7 +412,7 @@
388
412
  </li>
389
413
 
390
414
 
391
- <li class="even ">
415
+ <li class="odd ">
392
416
  <div class="item">
393
417
  <span class='object_link'><a href="Html2rss/Config.html#selector-instance_method" title="Html2rss::Config#selector (method)">#selector</a></span>
394
418
  <small>Html2rss::Config</small>
@@ -396,6 +420,14 @@
396
420
  </li>
397
421
 
398
422
 
423
+ <li class="even ">
424
+ <div class="item">
425
+ <span class='object_link'><a href="Html2rss/Config.html#time_zone-instance_method" title="Html2rss::Config#time_zone (method)">#time_zone</a></span>
426
+ <small>Html2rss::Config</small>
427
+ </div>
428
+ </li>
429
+
430
+
399
431
  <li class="odd ">
400
432
  <div class="item">
401
433
  <span class='object_link'><a href="Html2rss/Config.html#title-instance_method" title="Html2rss::Config#title (method)">#title</a></span>