Path: blob/master/pdf/formatting.py
687 views
from __future__ import print_function1import io2import nbformat3import sys456def remove_formatting(nb):7cells = nb['cells']8for i in range (len(cells)):9if 'source' in cells[i].keys():10if cells[i]['source'][0:16] == '#format the book':11del cells[i]12return131415def remove_links(nb):16c = nb['cells']17for i in range (len(c)):18if 'source' in c[i].keys():19if c[i]['source'][0:19] == '[Table of Contents]':20del c[i]21return222324def remove_links_add_appendix(nb):25c = nb['cells']26for i in range (len(c)):27if 'source' in c[i].keys():28if c[i]['source'][0:19] == '[Table of Contents]':29c[i]['source'] = '\\appendix'30return313233