##// END OF EJS Templates
Add %%js alias for %%javascript
Jonathan Frederic -
Show More
@@ -1,57 +1,62 b''
1 1 """Simple magics for display formats"""
2 2 #-----------------------------------------------------------------------------
3 3 # Copyright (c) 2012 The IPython Development Team.
4 4 #
5 5 # Distributed under the terms of the Modified BSD License.
6 6 #
7 7 # The full license is in the file COPYING.txt, distributed with this software.
8 8 #-----------------------------------------------------------------------------
9 9
10 10 #-----------------------------------------------------------------------------
11 11 # Imports
12 12 #-----------------------------------------------------------------------------
13 13
14 14 # Our own packages
15 15 from IPython.core.display import display, Javascript, Latex, SVG, HTML
16 16 from IPython.core.magic import (
17 17 Magics, magics_class, cell_magic
18 18 )
19 19
20 20 #-----------------------------------------------------------------------------
21 21 # Magic implementation classes
22 22 #-----------------------------------------------------------------------------
23 23
24 24
25 25 @magics_class
26 26 class DisplayMagics(Magics):
27 27 """Magics for displaying various output types with literals
28
29 Defines javascript/latex/svg/html cell magics for writing
28
29 Defines javascript/latex/svg/html cell magics for writing
30 30 blocks in those languages, to be rendered in the frontend.
31 31 """
32
32
33 @cell_magic
34 def js(self, line, cell):
35 """Run the cell block of Javascript code"""
36 self.javascript(line, cell)
37
33 38 @cell_magic
34 39 def javascript(self, line, cell):
35 40 """Run the cell block of Javascript code"""
36 41 display(Javascript(cell))
37
38
42
43
39 44 @cell_magic
40 45 def latex(self, line, cell):
41 46 """Render the cell as a block of latex
42
47
43 48 The subset of latex which is support depends on the implementation in
44 the client. In the Jupyter Notebook, this magic only renders the subset
45 of latex defined by MathJax
49 the client. In the Jupyter Notebook, this magic only renders the subset
50 of latex defined by MathJax
46 51 [here](https://docs.mathjax.org/en/v2.5-latest/tex.html)."""
47 52 display(Latex(cell))
48 53
49 54 @cell_magic
50 55 def svg(self, line, cell):
51 56 """Render the cell as an SVG literal"""
52 57 display(SVG(cell))
53 58
54 59 @cell_magic
55 60 def html(self, line, cell):
56 61 """Render the cell as a block of HTML"""
57 62 display(HTML(cell))
General Comments 0
You need to be logged in to leave comments. Login now