##// END OF EJS Templates
allow splitting and merging of heading cells...
allow splitting and merging of heading cells I consider it a bug that you couldn't merge with heading cells, and that you couldn't split them, either. (So much so that I thought it was a bug in ipython-vimception when I ran into it). This change removes that limitation, so heading cells are on par with the other cells in terms of the kinds of manipulations one can carry out with them.

File last commit:

r16418:b55d2748
r17417:811c7332
Show More
__init__.py
7 lines | 151 B | text/x-python | PythonLexer
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 from .base import PostProcessorBase
MinRK
protect against unavailable tornado in post_processors.init
r12513
# protect against unavailable tornado
try:
from .serve import ServePostProcessor
except ImportError:
pass