##// END OF EJS Templates
Select adequate highlighter for cell magic languages...
Pablo de Oliveira -
Show More
@@ -14,6 +14,8 b' from within Jinja templates.'
14 # Imports
14 # Imports
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 import re
18
17 from pygments import highlight as pygements_highlight
19 from pygments import highlight as pygements_highlight
18 from pygments.lexers import get_lexer_by_name
20 from pygments.lexers import get_lexer_by_name
19 from pygments.formatters import HtmlFormatter
21 from pygments.formatters import HtmlFormatter
@@ -28,6 +30,20 b' from IPython.nbconvert.utils.lexers import IPythonLexer'
28
30
29 MULTILINE_OUTPUTS = ['text', 'html', 'svg', 'latex', 'javascript', 'json']
31 MULTILINE_OUTPUTS = ['text', 'html', 'svg', 'latex', 'javascript', 'json']
30
32
33 # list of magic language extensions and their associated pygment lexers
34 magic_languages = {'%%R': 'r',
35 '%%bash': 'bash',
36 '%%octave': 'octave',
37 '%%perl': 'perl',
38 '%%ruby': 'ruby'
39 }
40
41 # build a RE to catch language extensions and choose an adequate
42 # pygments lexer
43 re_languages = "|".join(magic_languages.keys())
44 re_magic_language = re.compile(r'^\s*({})\s+'.format(re_languages),
45 re.MULTILINE)
46
31 #-----------------------------------------------------------------------------
47 #-----------------------------------------------------------------------------
32 # Utility functions
48 # Utility functions
33 #-----------------------------------------------------------------------------
49 #-----------------------------------------------------------------------------
@@ -67,6 +83,29 b" def highlight2latex(source, language='ipython'):"
67 return _pygment_highlight(source, LatexFormatter(), language)
83 return _pygment_highlight(source, LatexFormatter(), language)
68
84
69
85
86 def which_magic_language(source):
87 """
88 When a cell uses another language through a magic extension,
89 the other language is returned.
90 If no language magic is detected, this function returns None.
91
92 Parameters
93 ----------
94 source: str
95 Source code of the cell to highlight
96 """
97
98 m = re_magic_language.search(source)
99
100 if m:
101 # By construction of the re, the matched language must be in the
102 # language dictionnary
103 assert(m.group(1) in magic_languages)
104 return magic_languages[m.group(1)]
105 else:
106 return None
107
108
70 def _pygment_highlight(source, output_formatter, language='ipython'):
109 def _pygment_highlight(source, output_formatter, language='ipython'):
71 """
110 """
72 Return a syntax-highlighted version of the input source
111 Return a syntax-highlighted version of the input source
@@ -80,6 +119,10 b" def _pygment_highlight(source, output_formatter, language='ipython'):"
80 Language to highlight the syntax of.
119 Language to highlight the syntax of.
81 """
120 """
82
121
122 magic_language = which_magic_language(source)
123 if magic_language:
124 language = magic_language
125
83 if language == 'ipython':
126 if language == 'ipython':
84 lexer = IPythonLexer()
127 lexer = IPythonLexer()
85 else:
128 else:
@@ -15,7 +15,7 b' Module with tests for Highlight'
15 #-----------------------------------------------------------------------------
15 #-----------------------------------------------------------------------------
16
16
17 from ...tests.base import TestsBase
17 from ...tests.base import TestsBase
18 from ..highlight import highlight2html, highlight2latex
18 from ..highlight import highlight2html, highlight2latex, which_magic_language
19
19
20
20
21 #-----------------------------------------------------------------------------
21 #-----------------------------------------------------------------------------
@@ -45,21 +45,53 b' class TestHighlight(TestsBase):'
45 ['Hello World Example', 'say', 'text', 'print', 'def'],
45 ['Hello World Example', 'say', 'text', 'print', 'def'],
46 ['pylab', 'plot']]
46 ['pylab', 'plot']]
47
47
48
49 def test_highlight2html(self):
48 def test_highlight2html(self):
50 """highlight2html test"""
49 """highlight2html test"""
51 for index, test in enumerate(self.tests):
50 for index, test in enumerate(self.tests):
52 self._try_highlight(highlight2html, test, self.tokens[index])
51 self._try_highlight(highlight2html, test, self.tokens[index])
53
52
54
55 def test_highlight2latex(self):
53 def test_highlight2latex(self):
56 """highlight2latex test"""
54 """highlight2latex test"""
57 for index, test in enumerate(self.tests):
55 for index, test in enumerate(self.tests):
58 self._try_highlight(highlight2latex, test, self.tokens[index])
56 self._try_highlight(highlight2latex, test, self.tokens[index])
59
57
60
61 def _try_highlight(self, method, test, tokens):
58 def _try_highlight(self, method, test, tokens):
62 """Try highlighting source, look for key tokens"""
59 """Try highlighting source, look for key tokens"""
63 results = method(test)
60 results = method(test)
64 for token in tokens:
61 for token in tokens:
65 assert token in results
62 assert token in results
63
64 magic_tests = {
65 'r':
66 """%%R -i x,y -o XYcoef
67 lm.fit <- lm(y~x)
68 par(mfrow=c(2,2))
69 print(summary(lm.fit))
70 plot(lm.fit)
71 XYcoef <- coef(lm.fit)
72 """,
73 'bash':
74 """# the following code is in bash
75 %%bash
76 echo "test" > out
77 """,
78 'ipython':
79 """# this should not be detected
80 print("%%R")
81 """
82 }
83
84 def test_highlight_rmagic(self):
85 """Test %%R magic highlighting"""
86 language = which_magic_language(self.magic_tests['r'])
87 assert language == 'r'
88
89 def test_highlight_bashmagic(self):
90 """Test %%bash magic highlighting"""
91 language = which_magic_language(self.magic_tests['bash'])
92 assert language == 'bash'
93
94 def test_highlight_interferemagic(self):
95 """Test that magic highlighting does not interfere with ipython code"""
96 language = which_magic_language(self.magic_tests['ipython'])
97 assert language == None No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now