Description
If you look at SyntaxReference at the bgcolor and rowbgcolor of a table you see no color change. -- ReimarBauer 2005-12-28 20:03:49
Steps to reproduce
see example
Example
||<rowbgcolor="#00FF00">cell2||cell 3|| ||<bgcolor="#FF0000">cell2||cell 3||
- gives
cell2
cell 3
cell2
cell 3
we should see colors. (green and red)
Details
this wiki
MoinMoin Version |
|
OS and Version |
|
Python Version |
|
Server Setup |
|
Server Details |
|
Workaround
I did a simple patch to wiki.py to get it working.
1 --- wiki.py.orig 2005-12-28 20:20:39.332343072 +0100
2 +++ wiki.py 2005-12-28 21:08:00.510418352 +0100
3 @@ -662,6 +662,10 @@
4 attrs['valign'] = '"top"'
5 elif key == 'v':
6 attrs['valign'] = '"bottom"'
7 + elif key == '=':
8 + arg = parser.get_token()
9 + this_key = (attrdef.split('='))[0]
10 + attrs[this_key] = arg
11 elif key == '#':
12 arg = parser.get_token()
13 try:
Discussion
Plan
- Priority:
- Assigned to:
- Status: fixed in moin--main--1.5--patch-349