##// END OF EJS Templates
don't assume tested ipython is on the PATH...
don't assume tested ipython is on the PATH Use more portable / reliable `python -m IPython` especially helpful when there are many Pythons, or PATH is not reliable (Windows).

File last commit:

r11086:c137395d
r11350:4779579c
Show More
align_reveal_cells.tpl
17 lines | 411 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'reveal_cells.tpl' -%}
{%- block any_cell scoped -%}
{%- if cell.metadata.align_type in ['Left'] -%}
{{ super() }}
{%- elif cell.metadata.align_type in ['center'] -%}
<div style="text-align:center">
{{ super() }}
</div>
{%- elif cell.metadata.align_type in ['right'] -%}
<div style="text-align:right">
{{ super() }}
</div>
{%- endif -%}
{%- endblock any_cell -%}