##// END OF EJS Templates
Add HighlightMagicsPreprocessor...
Add HighlightMagicsPreprocessor HighlightMagicsPreprocessor is in charge of detecting cells that use language extensions. It tags the cell metadata with the language used. Enable HighlightMagicsPreprocessor by default on latex and html exporters.

File last commit:

r11770:6b8a9d57
r12573:e46115c2
Show More
subslides.tpl
14 lines | 313 B | application/vnd.groove-tool-template | SmartyLexer
damianavila
Organized reveal's templates.
r11677 {%- extends 'reveal_internals/align_reveal_cells.tpl' -%}
damianavila
A new implementation of reveal converter with jinja templates.
r9662
{%- block any_cell scoped -%}
{%- if cell.metadata.slide_type in ['subslide'] -%}
<section>
{%- endif -%}
damianavila
Redo of fixing templates structure.
r11770 {{ super() }}
damianavila
A new implementation of reveal converter with jinja templates.
r9662
{%- if cell.metadata.slide_helper in ['subslide_end'] -%}
</section>
{%- endif -%}
{%- endblock any_cell -%}