\n')
#_file.write(tostring(el_header, pretty_print=True, encoding='unicode'))
_file.write('
')
_file.write(toc_at_location(collapsed_toc, location))
_file.write(breadcrumbs(location))
_file.write(navigation_links(location))
def write_file_end(_file, location):
_file.write('\n
')
_file.write(navigation_links(location)) # repeat, for convenience
_file.write('\n
')
_file.write('\n
')
_file.write(copyright_string)
_file.write(tostring(el_postamble, pretty_print=True, encoding='unicode'))
_file.write('\n
\n')
def write_files_recursive(name, el, levelmax=5):
"""
Recursively extract outlines.
"""
if 'id' in el.attrib and el.attrib['id'] == 'content':
level = 1
elif not (el is not None and
'class' in el.attrib and
el.attrib['class'].startswith('outline-')):
print(f'Element name {name} has no outline class, no files written.')
return
else:
level = int(el.attrib['class'].partition('outline-')[2][0])
_file = open(f'{BASEDIR}export/html/{name}.html', 'w')
write_file_start(_file, name)
# Count outline children for establishing output format
children = []
for child in el.iter():
if ('class' in child.attrib and
child.attrib['class'].startswith('outline-%s' % str(level + 1))):
children.append(child)
# if no children or if we're on levelmax, write everything
if (len(children) == 0 or level == levelmax):
_file.write(tostring(el, pretty_print=True, encoding='unicode'))
# otherwise write anything above first next-level headling,
# and then replace the next-level headlines by links to their files
else:
if (el.text):
_file.write(el.text)
for child in el:
if ('class' in child.attrib and
child.attrib['class'].startswith('outline-%s' % str(level + 1))):
break # break out once we hit the first next-level headline
if child.tag != "nav": # don't write the table-of-contents
_file.write(tostring(child, pretty_print=True, encoding='unicode'))
# now print the list of children
_file.write(f'