##// END OF EJS Templates
Moved wrap code into Strings utility file.
Moved wrap code into Strings utility file.

File last commit:

r10386:6416b524
r10433:b95ac079
Show More
pdf.py
7 lines | 235 B | text/x-python | PythonLexer
from .latex import ConverterLaTeX
import subprocess
class ConverterLaTeXToPDF(ConverterLaTeX):
def render(self):
super(ConverterLaTeXToPDF, self).render()
subprocess.check_call(['pdflatex', self.outbase + '.tex'])