fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Basic biblical tools.
[librarian.git]
/
src
/
librarian
/
elements
/
styles
/
www.py
diff --git
a/src/librarian/elements/styles/www.py
b/src/librarian/elements/styles/www.py
index
d8268a1
..
4655829
100644
(file)
--- a/
src/librarian/elements/styles/www.py
+++ b/
src/librarian/elements/styles/www.py
@@
-1,11
+1,19
@@
+# 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
class WWW(WLElement):
from ..base import WLElement
class WWW(WLElement):
- EPUB_TAG = 'a'
+
HTML_TAG =
EPUB_TAG = 'a'
def get_epub_attr(self, builder):
attr = super().get_epub_attr(builder)
attr['href'] = self.text
return attr
def get_epub_attr(self, builder):
attr = super().get_epub_attr(builder)
attr['href'] = self.text
return attr
+ def get_html_attr(self, builder):
+ attr = super().get_epub_attr(builder)
+ attr['target'] = '_blank'
+ attr['href'] = self.text
+ return attr