X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/db91f942ce46e3af1420f3469a83257ef5aca4c2..3a0c83394d5783715fab2be29fa1a9cfc3574e28:/src/librarian/elements/styles/tytul_dziela.py diff --git a/src/librarian/elements/styles/tytul_dziela.py b/src/librarian/elements/styles/tytul_dziela.py index 906d98c..37abbb9 100644 --- a/src/librarian/elements/styles/tytul_dziela.py +++ b/src/librarian/elements/styles/tytul_dziela.py @@ -1,4 +1,6 @@ -# -*- coding: utf-8 +# This file is part of Librarian, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. +# from ..base import WLElement @@ -6,8 +8,8 @@ class TytulDziela(WLElement): EPUB_TAG = HTML_TAG = 'em' EPUB_CLASS = HTML_CLASS = 'book-title' - def normalize_text(self, text): - txt = super(TytulDziela, self).normalize_text(text) + def normalize_text(self, text, builder): + txt = super(TytulDziela, self).normalize_text(text, builder) if self.attrib.get('typ') == '1': txt = '„{txt}”'.format(txt=txt) return txt