diff --git a/IPython/nbconvert/exporters/markdown.py b/IPython/nbconvert/exporters/markdown.py index 28708ae..2646e05 100644 --- a/IPython/nbconvert/exporters/markdown.py +++ b/IPython/nbconvert/exporters/markdown.py @@ -38,6 +38,12 @@ class MarkdownExporter(TemplateExporter): @property def default_config(self): - c = Config({'ExtractOutputPreprocessor':{'enabled':True}}) + c = Config({ + 'NbConvertBase': { + 'display_data_priority': ['html', 'application/pdf', 'svg', 'latex', 'png', 'jpg', 'jpeg' , 'text'] + }, + 'ExtractOutputPreprocessor': { + 'enabled':True} + }) c.merge(super(MarkdownExporter,self).default_config) return c