Module: HTML2PDFChrome

Defined in:
lib/html2pdf_chrome.rb,
lib/html2pdf_chrome/version.rb,
lib/html2pdf_chrome/chromedriver.rb,
lib/html2pdf_chrome/html_converter.rb

Defined Under Namespace

Classes: Chromedriver, Error, HtmlConverter

Constant Summary collapse

VERSION =
"0.0.2"

Class Method Summary collapse

Class Method Details

.convert_html_to_pdf(html, header_template: "<div></div>", footer_template: "<div></div>") ⇒ Object



14
15
16
# File 'lib/html2pdf_chrome.rb', line 14

def self.convert_html_to_pdf(html, header_template: "<div></div>", footer_template: "<div></div>")
  HtmlConverter.new(html, header_template:, footer_template:).convert_to_pdf!
end