Description
We are using styles and class for formatting table cells. But the " is replaced by "
Steps to reproduce
Example
Example:
|| Test ||<class="test">Test|| || narrow ||<style="width: 99%; text-align: center;"> wide ||
The created HTML code for <TD> is:
<td class=""test"">.... <td style="" width: 99%; text-align: center; "">...
As you can see, the " is replaced by " and so the CSS class is not found.
Style is working, because the " at beginning and at the end ignored by the browser.
Component selection
MoinMoin was installed on a fresh Ubuntu 14.04.
Details
MoinMoin Version |
1.9.7 |
OS and Version |
Ubuntu 14.04 |
Python Version |
|
Server Setup |
|
Server Details |
|
Language you are using the wiki in (set in the browser/UserPreferences) |
|
Workaround
The class works properly just removing the double quotes: <class=test> instead of <class="test">.
Example:
|| Test ||<class=test>Test||
Discussion
- This bug seems to be in some ways fixed in moin 1.9.8. Both ways to write classes, with or without double quotes (see the Workaround) are working.
Plan
- Priority:
- Assigned to:
- Status: fixed in 1.9.8 (see above)