##// END OF EJS Templates
Refactoring for the rename of ConverterTemplate to Exporter.
Refactoring for the rename of ConverterTemplate to Exporter.

File last commit:

r10386:6416b524
r10430:0f226b75
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'])