Mercurial > moin > 1.9
changeset 3131:61d2168cc010
allow "abbr" as table cell attribute
author | Johannes Berg <johannes AT sipsolutions DOT net> |
---|---|
date | Wed, 27 Feb 2008 14:38:26 +0100 |
parents | d57fed1b0b43 |
children | 89f0c9a80f8a |
files | MoinMoin/formatter/text_html.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/formatter/text_html.py Wed Feb 27 14:08:29 2008 +0100 +++ b/MoinMoin/formatter/text_html.py Wed Feb 27 14:38:26 2008 +0100 @@ -1241,7 +1241,7 @@ _allowed_table_attrs = { 'table': ['class', 'id', 'style'], 'row': ['class', 'id', 'style'], - '': ['colspan', 'rowspan', 'class', 'id', 'style'], + '': ['colspan', 'rowspan', 'class', 'id', 'style', 'abbr'], } def _checkTableAttr(self, attrs, prefix):