##// END OF EJS Templates
highlight: cell metadata to decide how to highlight foreign languages...
highlight: cell metadata to decide how to highlight foreign languages * Remove magic language detection from highlight filter, and replace it by a lookup in the cell metadata. * The highlight filter now expects a full Cell object instead of the Cell input. * Modify templates so they pass a full cell object. * Update highlight filter tests

File last commit:

r12572:b0d197bf
r12572:b0d197bf
Show More
highlight.py
98 lines | 2.8 KiB | text/x-python | PythonLexer
"""
Module containing filter functions that allow code to be highlighted
from within Jinja templates.
"""
#-----------------------------------------------------------------------------
# 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 re
from pygments import highlight as pygements_highlight
from pygments.lexers import get_lexer_by_name
from pygments.formatters import HtmlFormatter
from pygments.formatters import LatexFormatter
# Our own imports
from IPython.nbconvert.utils.lexers import IPythonLexer
#-----------------------------------------------------------------------------
# Globals and constants
#-----------------------------------------------------------------------------
MULTILINE_OUTPUTS = ['text', 'html', 'svg', 'latex', 'javascript', 'json']
#-----------------------------------------------------------------------------
# Utility functions
#-----------------------------------------------------------------------------
__all__ = [
'highlight2html',
'highlight2latex'
]
def highlight2html(cell, language='ipython'):
"""
Return a syntax-highlighted version of the input source as html output.
Parameters
----------
cell : NotebookNode cell
cell to highlight
language : str
Language to highlight the syntax of.
"""
return _pygment_highlight(cell, HtmlFormatter(), language)
def highlight2latex(cell, language='ipython'):
"""
Return a syntax-highlighted version of the input source as latex output.
Parameters
----------
cell : NotebookNode cell
cell to highlight
language : str
Language to highlight the syntax of.
"""
return _pygment_highlight(cell, LatexFormatter(), language)
def _pygment_highlight(cell, output_formatter, language='ipython'):
"""
Return a syntax-highlighted version of the input source
Parameters
----------
cell : NotebookNode cell
cell to highlight
output_formatter : Pygments formatter
language : str
Language to highlight the syntax of.
"""
# If the cell uses a magic extension language,
# use the magic language instead.
if language == 'ipython' \
and 'metadata' in cell \
and 'magics_language' in cell['metadata']:
language = cell['metadata']['magics_language']
if language == 'ipython':
lexer = IPythonLexer()
else:
lexer = get_lexer_by_name(language, stripall=True)
return pygements_highlight(cell, lexer, output_formatter)