|
18 | 18 | from IPython.nbformat.v3.nbbase import NotebookNode |
19 | 19 |
|
20 | 20 | from .exporter import Exporter |
21 | | -from .basichtml import BasicHtmlExporter |
22 | | -from .fullhtml import FullHtmlExporter |
| 21 | +from .basichtml import BasicHTMLExporter |
| 22 | +from .fullhtml import FullHTMLExporter |
23 | 23 | from .latex import LatexExporter |
24 | 24 | from .markdown import MarkdownExporter |
25 | 25 | from .python import PythonExporter |
@@ -146,15 +146,15 @@ def export_basic_html(nb, config=None, transformers=None, filters=None): |
146 | 146 | """ |
147 | 147 | Export a notebook object to Basic HTML |
148 | 148 | """ |
149 | | - return export(BasicHtmlExporter, nb, config, transformers, filters) |
| 149 | + return export(BasicHTMLExporter, nb, config, transformers, filters) |
150 | 150 |
|
151 | 151 |
|
152 | 152 | @DocDecorator |
153 | 153 | def export_full_html(nb, config=None, transformers=None, filters=None): |
154 | 154 | """ |
155 | 155 | Export a notebook object to Full HTML |
156 | 156 | """ |
157 | | - return export(FullHtmlExporter, nb, config, transformers, filters) |
| 157 | + return export(FullHTMLExporter, nb, config, transformers, filters) |
158 | 158 |
|
159 | 159 |
|
160 | 160 | @DocDecorator |
|
0 commit comments