##// END OF EJS Templates
Simplify caching of modules from %run-ing scripts....
Simplify caching of modules from %run-ing scripts. Previously, we cleared and re-used a single FakeModule instance in which to run cells, and cached copies of the modules' namespaces to prevent them from being cleared. Now, we cache one FakeModule instance per script file, clearing it and re-using it if the same script is re-run. This seems more robust. Closes gh-3547

File last commit:

r11086:c137395d
r11207:279211b6
Show More
sphinx_howto.tplx
25 lines | 902 B | text/plain | TextLexer
Jonathan Frederic
Split Sphinx template into sub-style templates.
r9742 ((============================================================================
NBConvert Sphinx-Latex HowTo Template
Purpose: Allow export of PDF friendly Latex inspired by Sphinx HowTo
document style. Most of the is derived directly from Sphinx source.
Inheritance: null>display_priority>latex_base->latex_sphinx_base
==========================================================================))
Jonathan Frederic
Almost have nbconvert working again...
r10630 ((*- extends 'sphinx_base.tplx' -*))
Jonathan Frederic
Split Sphinx template into sub-style templates.
r9742
Jonathan Frederic
Got both of the main template formats from sphinx rendering....
r9746 ((* set parentdocumentclass = 'article' *))
((* set documentclass = 'howto' *))
Jonathan Frederic
Sphinx templates draw underlaying data from Sphinx classes.
r9745
Jonathan Frederic
Moved header definitions into individual sphinx doc types....
r9761 ((* block h1 -*))part((* endblock h1 -*))
((* block h2 -*))section((* endblock h2 -*))
((* block h3 -*))subsection((* endblock h3 -*))
((* block h4 -*))subsubsection((* endblock h4 -*))
((* block h5 -*))paragraph((* endblock h5 -*))
((* block h6 -*))subparagraph((* endblock h6 -*))
Jonathan Frederic
Disable TOC for howto.
r9941
% Diasble table of contents for howto
((* block toc *))
((* endblock toc *))