fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
af4a4365f99798d343ac7c16310b00857c7af329
[librarian.git]
/
src
/
librarian
/
elements
/
figures
/
tabela.py
1
from ..base import WLElement
2
3
4
class Tabela(WLElement):
5
HTML_TAG = 'table'
6
7
def get_html_attr(self, builder):
8
if self.attrib.get('ramka', '') == '1':
9
return {
10
'class': 'border'
11
}
12
return {}