MobileBlur

Diff
Login

Differences From Artifact [adcdc0c9ce]:

To Artifact [390d0316f6]:


57
58
59
60
61
62
63
64

57
58
59
60
61
62
63
64
65








+

def pdf_from_html(html):
    # try use latex and pdflatex
    if os.system('which pdflatex > /dev/null')==0:
        return pdflatex_from_html(html)
    else:
        return pyfpdf_from_html(html)