##// END OF EJS Templates
Backport PR #4178: add missing data_javascript...
Backport PR #4178: add missing data_javascript Note that javascript is still excluded from html output by default, but this makes it possible to include javascript output in custom templates. candidate for backport to 1.1

File last commit:

r12465:b2940d33
r12465:b2940d33
Show More
display_priority.tplx
42 lines | 1.3 KiB | text/plain | TextLexer
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 ((= autogenerated file do not edit =))
Matthias BUSSONNIER
lots of modification for latex
r9611 ((*- extends 'null.tplx' -*))
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608
((=display data priority=))
((*- block data_priority scoped -*))
((*- for type in output | filter_data_type -*))
((*- if type in ['pdf']*))
((*- block data_pdf -*))
((*- endblock -*))
((*- endif -*))
((*- if type in ['svg']*))
((*- block data_svg -*))
((*- endblock -*))
((*- endif -*))
((*- if type in ['png']*))
Matthias BUSSONNIER
move tex skeleton
r9631 ((*- block data_png -*))
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 ((*- endblock -*))
((*- endif -*))
((*- if type in ['html']*))
((*- block data_html -*))
((*- endblock -*))
((*- endif -*))
((*- if type in ['jpeg']*))
((*- block data_jpg -*))
((*- endblock -*))
((*- endif -*))
((*- if type in ['text']*))
((*- block data_text -*))
((*- endblock -*))
((*- endif -*))
((*- if type in ['latex']*))
((*- block data_latex -*))
((*- endblock -*))
((*- endif -*))
MinRK
Backport PR #4178: add missing data_javascript...
r12465 ((*- if type in ['javascript']*))
((*- block data_javascript -*))
((*- endblock -*))
((*- endif -*))
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 ((*- endfor -*))
((*- endblock data_priority -*))