Skip to content

Commit

Permalink
Merge pull request #8501 from takluyver/backport-nbconvert-5
Browse files Browse the repository at this point in the history
Remove pdf from display order for HTML export
  • Loading branch information
Carreau committed Jun 2, 2015
2 parents a4c5f92 + 5ada0da commit 6b1a0c9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion IPython/nbconvert/exporters/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ def _template_file_default(self):
def default_config(self):
c = Config({
'NbConvertBase': {
'display_data_priority' : ['application/javascript', 'text/html', 'text/markdown', 'application/pdf', 'image/svg+xml', 'text/latex', 'image/png', 'image/jpeg', 'text/plain']
'display_data_priority' : ['application/javascript',
'text/html',
'text/markdown',
'image/svg+xml',
'text/latex',
'image/png',
'image/jpeg',
'text/plain'
]
},
'CSSHTMLHeaderPreprocessor':{
'enabled':True
Expand Down

0 comments on commit 6b1a0c9

Please sign in to comment.