Method: PDF#gen_html_from_sections_and_page_texts
- Defined in:
- lib/pdf.rb
#gen_html_from_sections_and_page_texts(sections, page_texts, illustrations) ⇒ Object
108 109 110 111 112 113 114 |
# File 'lib/pdf.rb', line 108 def gen_html_from_sections_and_page_texts(sections,page_texts,illustrations) if sections.empty? gen_html_from_page_texts(page_texts,illustrations) else gen_html_from_page_texts(page_texts,illustrations) #sections中的页码不准确,暂时不进行处理 end end |