with_footnotes = True
with_nota_red = True
no_externalities = False
+ orphans = True
- def __init__(self, image_location='https://wolnelektury.pl/media/book/pictures/marcos-historia-kolorow/'):
- self.image_location = image_location
+ def __init__(self, base_url=None):
+ self._base_url = base_url
self.tree = text = etree.Element('div', **{'id': 'book-text'})
- self.header = etree.SubElement(text, 'h1')
+ self.header = etree.Element('h1')
self.footnotes = etree.Element('div', id='footnotes')
self.footnote_counter = 0
}
self.current_cursors = [text]
+ @property
+ def base_url(self):
+ if self._base_url is not None:
+ return self._base_url
+ else:
+ return 'https://wolnelektury.pl/media/book/pictures/{}/'.format(self.document.meta.url.slug)
+
@property
def cursor(self):
return self.current_cursors[-1]
def enter_fragment(self, fragment):
- self.current_cursors.append(self.cursors[fragment])
+ cursor = self.cursors.get(fragment, self.cursor)
+ self.current_cursors.append(cursor)
def exit_fragment(self):
self.current_cursors.pop()
document._compat_assign_section_ids()
def build(self, document, **kwargs):
+ self.document = document
+
self.preprocess(document)
document.tree.getroot().html_build(self)
self.postprocess(document)
if self.with_toc:
add_table_of_contents(self.tree)
+ if len(self.header):
+ self.tree.insert(0, self.header)
+
if self.footnote_counter:
fnheader = etree.Element("h3")
fnheader.text = _("Footnotes")
)
+class SnippetHtmlBuilder(HtmlBuilder):
+ with_anchors = False
+ with_themes = False
+ with_toc = False
+ with_footnotes = False
+ with_nota_red = False
+ with_refs = False
+
+
class DaisyHtmlBuilder(StandaloneHtmlBuilder):
file_extension = 'xhtml'
with_anchors = False