Method: TXT#gen_html_from_txt_book

Defined in:
lib/txt.rb

#gen_html_from_txt_book(title, outlines, content, options = {}) ⇒ Object



78
79
80
81
82
# File 'lib/txt.rb', line 78

def gen_html_from_txt_book(title,outlines,content,options={})
  html = "<h1>#{title}</h1>"
  html = html + gen_html_from_txt_outlines(outlines,options)
  html = html + gen_html_from_txt_content(content,options)
end