You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/nbconvert/tests/fake_exporters.py

26 lines
547 B

"""
Module that define a custom exporter just to test the ability to invoke
nbconvert with full qualified name
"""
from traitlets import default
from nbconvert.exporters.html import HTMLExporter
class MyExporter(HTMLExporter):
"""
My custom exporter
"""
@default('file_extension')
def _file_extension_default(self):
"""
The new file extension is `.test_ext`
"""
return '.test_ext'
@default('template_extension')
def _template_extension_default(self):
return '.html.j2'