Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / styles / wyroznienie.py
1 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from ..base import WLElement
5
6
7 class Wyroznienie(WLElement):
8     TXT_PREFIX = "*"
9     TXT_SUFFIX = "*"
10
11     EPUB_TAG = HTML_TAG = "em"
12     EPUB_CLASS = HTML_CLASS = "author-emphasis"