Index: trunk/extensions/wikidiff2/wikidiff2.cpp |
— | — | @@ -28,8 +28,8 @@ |
29 | 29 | if (linediff[i].op != DiffOp<std::string>::copy && i == 0) { |
30 | 30 | ret += |
31 | 31 | "<tr>\n" |
32 | | - " <td colspan=\"2\" align=\"left\"><strong><!--LINE 1--></strong></td>\n" |
33 | | - " <td colspan=\"2\" align=\"left\"><strong><!--LINE 1--></strong></td>\n" |
| 32 | + " <td colspan=\"2\" class=\"diff-lineno\"><!--LINE 1--></td>\n" |
| 33 | + " <td colspan=\"2\" class=\"diff-lineno\"><!--LINE 1--></td>\n" |
34 | 34 | "</tr>\n"; |
35 | 35 | } |
36 | 36 | |
— | — | @@ -61,8 +61,8 @@ |
62 | 62 | char buf[256]; // should be plenty |
63 | 63 | sprintf(buf, |
64 | 64 | "<tr>\n" |
65 | | - " <td colspan=\"2\" align=\"left\"><strong><!--LINE %u--></strong></td>\n" |
66 | | - " <td colspan=\"2\" align=\"left\"><strong><!--LINE %u--></strong></td>\n" |
| 65 | + " <td colspan=\"2\" class=\"diff-lineno\"><!--LINE %u--></td>\n" |
| 66 | + " <td colspan=\"2\" class=\"diff-lineno\"><!--LINE %u--></td>\n" |
67 | 67 | "</tr>\n", |
68 | 68 | from_ind, to_ind); |
69 | 69 | ret += buf; |