##// END OF EJS Templates
tweak inkscape configurability...
tweak inkscape configurability now you only specify the 'inkscape' path if it's non-default, rather than re-specifying the whole command (whole command still configurable for non-Inkscape use case).

File last commit:

r11086:c137395d
r11580:21cb4096
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 -%}