##// END OF EJS Templates
Nbconvert latex posix path fix
Jonathan Frederic -
Show More
@@ -47,11 +47,11 class LatexExporter(Exporter):
47 47
48 48 #Latex constants
49 49 template_path = Unicode(
50 "/../templates/latex/", config=True,
50 os.path.join("..", "templates", "latex"), config=True,
51 51 help="Path where the template files are located.")
52 52
53 53 template_skeleton_path = Unicode(
54 "/../templates/latex/skeleton/", config=True,
54 os.path.join("..", "templates", "latex", "skeleton"), config=True,
55 55 help="Path where the template skeleton files are located.")
56 56
57 57 #Special Jinja2 syntax that will not conflict when exporting latex.
General Comments 0
You need to be logged in to leave comments. Login now