##// END OF EJS Templates
use check_output in test_profile...
use check_output in test_profile getoutput doesn't accept lists properly in 1.x

File last commit:

r11770:6b8a9d57
r15047:4398a72b
Show More
align_reveal_cells.tpl
16 lines | 427 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'reveal_internals/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 -%}