Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
29
venv/Lib/site-packages/nbconvert/utils/base.py
Normal file
29
venv/Lib/site-packages/nbconvert/utils/base.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
"""Global configuration class."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
|
||||
from traitlets import List
|
||||
from traitlets.config.configurable import LoggingConfigurable
|
||||
from traitlets import Unicode
|
||||
|
||||
class NbConvertBase(LoggingConfigurable):
|
||||
"""Global configurable class for shared config
|
||||
|
||||
Useful for display data priority that might be used by many transformers
|
||||
"""
|
||||
|
||||
display_data_priority = List(['text/html', 'application/pdf', 'text/latex', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/markdown', 'text/plain'],
|
||||
help= """
|
||||
An ordered list of preferred output type, the first
|
||||
encountered will usually be used when converting discarding
|
||||
the others.
|
||||
"""
|
||||
).tag(config=True)
|
||||
|
||||
default_language = Unicode('ipython',
|
||||
help='Deprecated default highlight language as of 5.0, please use language_info metadata instead'
|
||||
).tag(config=True)
|
||||
|
||||
def __init__(self, **kw):
|
||||
super().__init__(**kw)
|
Loading…
Add table
Add a link
Reference in a new issue