diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d212111 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jupyter_latex_envs.iml b/.idea/jupyter_latex_envs.iml new file mode 100644 index 0000000..2d0388c --- /dev/null +++ b/.idea/jupyter_latex_envs.iml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..c3334de --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d823b95 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/latex_envs/latex_envs.py b/src/latex_envs/latex_envs.py index 3dbc410..55171d7 100644 --- a/src/latex_envs/latex_envs.py +++ b/src/latex_envs/latex_envs.py @@ -301,12 +301,12 @@ def default_config(self): ) c.merge(super(LenvsHTMLExporter, self).default_config) if os.path.isdir(os.path.join(os.path.dirname(__file__), 'templates')): - c.TemplateExporter.template_path = ['.', + c.TemplateExporter.template_paths = ['.', os.path.join(os.path.dirname(__file__), 'templates')] else: from jupyter_contrib_nbextensions.nbconvert_support import ( templates_directory) - c.TemplateExporter.template_path = ['.', templates_directory()] + c.TemplateExporter.template_paths = ['.', templates_directory()] return c @@ -364,12 +364,12 @@ def default_config(self): ) c.merge(super(LenvsSlidesExporter, self).default_config) if os.path.isdir(os.path.join(os.path.dirname(__file__), 'templates')): - c.TemplateExporter.template_path = ['.', + c.TemplateExporter.template_paths = ['.', os.path.join(os.path.dirname(__file__), 'templates')] else: from jupyter_contrib_nbextensions.nbconvert_support import ( templates_directory) - c.TemplateExporter.template_path = ['.', templates_directory()] + c.TemplateExporter.template_paths = ['.', templates_directory()] return c @@ -483,12 +483,12 @@ def default_config(self): c.merge(super(LenvsLatexExporter, self).default_config) if os.path.isdir(os.path.join(os.path.dirname(__file__), 'templates')): - c.TemplateExporter.template_path = ['.', + c.TemplateExporter.template_paths = ['.', os.path.join(os.path.dirname(__file__), 'templates')] else: from jupyter_contrib_nbextensions.nbconvert_support import ( templates_directory) - c.TemplateExporter.template_path = ['.', templates_directory()] + c.TemplateExporter.template_paths = ['.', templates_directory()] return c def tocrefrm(self, text):