##// END OF EJS Templates
Merge pull request #3507 from minrk/html...
Merge pull request #3507 from minrk/html fix HTML capitalization in nbconvert exporter classes

File last commit:

r11108:1a1aafcf
r11122:8be0653e merge
Show More
csshtmlheader.py
105 lines | 3.1 KiB | text/x-python | PythonLexer
Jonathan Frederic
Cleanup and refactor, transformers
r10674 """Module that pre-processes the notebook for export to HTML.
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import os
import io
from pygments.formatters import HtmlFormatter
from IPython.utils import path
Jonathan Frederic
Fixed all broken references, refactored some stuff here and there,...
r10624 from .activatable import ActivatableTransformer
Jonathan Frederic
Cleanup and refactor, transformers
r10674
#-----------------------------------------------------------------------------
# Classes and functions
#-----------------------------------------------------------------------------
Jonathan Frederic
Split transformer code
r10437
MinRK
fix HTML capitalization in exporter classes
r11108 class CSSHTMLHeaderTransformer(ActivatableTransformer):
Jonathan Frederic
Cleanup and refactor, transformers
r10674 """
Transformer used to pre-process notebook for HTML output. Adds IPython notebook
front-end CSS and Pygments CSS to HTML output.
"""
Jonathan Frederic
Split transformer code
r10437
Jonathan Frederic
Cleanup and refactor, transformers
r10674 header = []
Jonathan Frederic
Split transformer code
r10437
Jonathan Frederic
Cleanup and refactor, transformers
r10674 def __init__(self, config=None, **kw):
"""
Public constructor
Parameters
----------
config : Config
Configuration file structure
**kw : misc
Additional arguments
"""
MinRK
fix HTML capitalization in exporter classes
r11108 super(CSSHTMLHeaderTransformer, self).__init__(config=config, **kw)
Jonathan Frederic
Split transformer code
r10437
Jonathan Frederic
Cleanup and refactor, transformers
r10674 if self.enabled :
self._regen_header()
def __call__(self, nb, resources):
"""Fetch and add CSS to the resource dictionary
Fetch CSS from IPython and Pygments to add at the beginning
of the html files. Add this css in resources in the
"inlining.css" key
Parameters
----------
nb : NotebookNode
Notebook being converted
resources : dictionary
Additional resources used in the conversion process. Allows
transformers to pass variables into the Jinja engine.
Jonathan Frederic
Split transformer code
r10437 """
Jonathan Frederic
Cleanup and refactor, transformers
r10674
Jonathan Frederic
Split transformer code
r10437 resources['inlining'] = {}
resources['inlining']['css'] = self.header
Jonathan Frederic
Cleanup and refactor, transformers
r10674
Jonathan Frederic
Split transformer code
r10437 return nb, resources
Jonathan Frederic
Cleanup and refactor, transformers
r10674 def _regen_header(self):
"""
MinRK
various spelling and capitalization fixes
r11046 Fills self.header with lines of CSS extracted from IPython
Jonathan Frederic
Cleanup and refactor, transformers
r10674 and Pygments.
"""
#Clear existing header.
Jonathan Frederic
Split transformer code
r10437 header = []
Jonathan Frederic
Cleanup and refactor, transformers
r10674
MinRK
various spelling and capitalization fixes
r11046 #Construct path to IPy CSS
damianavila
Change css path because the flatten of notebook dir.
r11043 sheet_filename = os.path.join(path.get_ipython_package_dir(),
damianavila
Fixing the path again.
r11044 'html', 'static', 'style', 'style.min.css')
Jonathan Frederic
Cleanup and refactor, transformers
r10674
Jonathan Frederic
Only 'style.min.css' should be needed - (suggested by @minrk)
r10766 #Load style CSS file.
try:
with io.open(sheet_filename, encoding='utf-8') as file:
file_text = file.read()
header.append(file_text)
except IOError:
Jonathan Frederic
Cleanup and refactor, transformers
r10674
MinRK
various spelling and capitalization fixes
r11046 # New version of IPython with style.min.css, pass
Jonathan Frederic
Only 'style.min.css' should be needed - (suggested by @minrk)
r10766 pass
Jonathan Frederic
Split transformer code
r10437
Jonathan Frederic
Cleanup and refactor, transformers
r10674 #Add pygments CSS
Jonathan Frederic
Split transformer code
r10437 pygments_css = HtmlFormatter().get_style_defs('.highlight')
header.append(pygments_css)
Jonathan Frederic
Cleanup and refactor, transformers
r10674
#Set header
Jonathan Frederic
Split transformer code
r10437 self.header = header