allow colspan and rowspan attributes in HTML
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3689 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
d1110c410e
commit
ee744a7e23
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ from cybertools.text.lib.BeautifulSoup import BeautifulSoup, Comment
|
|||
validTags = ('a b br div em font h1 h2 h3 i li ol p pre span strong '
|
||||
'table td tr u ul').split()
|
||||
|
||||
validAttrs = 'align border cellpadding cellspacing class href style title'.split()
|
||||
validAttrs = ('align border cellpadding cellspacing class colspan href rowspan '
|
||||
'style title').split()
|
||||
|
||||
validStyles = 'font-style font-weight'.split()
|
||||
validStyleParts = 'border padding'.split()
|
||||
|
|
Loading…
Add table
Reference in a new issue