Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nbconvert: Jinjaless exporter base #4175

Merged
merged 15 commits into from Sep 18, 2013
Merged
3 changes: 2 additions & 1 deletion IPython/nbconvert/exporters/__init__.py 100755 → 100644
@@ -1,8 +1,9 @@
from .export import *
from .html import HTMLExporter
from .slides import SlidesExporter
from .exporter import Exporter
from .templateexporter import TemplateExporter
from .latex import LatexExporter
from .markdown import MarkdownExporter
from .python import PythonExporter
from .rst import RSTExporter
from .exporter import Exporter
3 changes: 2 additions & 1 deletion IPython/nbconvert/exporters/export.py 100755 → 100644
Expand Up @@ -19,6 +19,7 @@
from IPython.config import Config

from .exporter import Exporter
from .templateexporter import TemplateExporter
from .html import HTMLExporter
from .slides import SlidesExporter
from .latex import LatexExporter
Expand Down Expand Up @@ -122,7 +123,7 @@ def export(exporter, nb, **kw):
return output, resources

exporter_map = dict(
custom=Exporter,
custom=TemplateExporter,
html=HTMLExporter,
slides=SlidesExporter,
latex=LatexExporter,
Expand Down