diff --git a/Slides/slides_config.py b/Slides/slides_config.py index 44412ee..69acbbc 100644 --- a/Slides/slides_config.py +++ b/Slides/slides_config.py @@ -1,21 +1,21 @@ #! /usr/bin/env python3 import os import sys dirname = os.path.dirname(__file__) -print(dirname) +# print(dirname) sys.path.append(dirname) c = get_config() c.Exporter.template_file = 'presentation.tpl' -print(c.Exporter.__dict__) # c.Exporter.template_file = 'mybasic.tpl' -c.Exporter.template_path.append(os.path.join(dirname, 'templates')) +c.Exporter.template_paths.append(os.path.join(dirname, 'templates')) +# print(c.Exporter.items()) # c.Exporter.preprocessors = ['execute_markdown.ExecutePreprocessor', # 'pre_pymarkdown.PyMarkdownPreprocessor'] c.Exporter.preprocessors = [ 'jupyter_contrib_nbextensions.nbconvert_support.pre_pymarkdown.' 'PyMarkdownPreprocessor']