diff options
author | Korrawit Pruegsanusak <detective.conan.1412@gmail.com> | 2011-12-25 11:59:50 +0700 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2012-02-07 14:36:49 +0100 |
commit | ad1896d3addcd7ed366efc135b0d50c656aa8cfe (patch) | |
tree | 7ec9d232ce031ff3f094be3bacffb1217a05a5bc | |
parent | 2d9b0038ab00fae586ea6406ebe60633732d236f (diff) |
wikihelp: change table default to class="wikitable"
Signed-off-by: Jan Holesovsky <kendy@suse.cz>
-rwxr-xr-x | helpcontent2/to-wiki/wikiconv2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcontent2/to-wiki/wikiconv2.py b/helpcontent2/to-wiki/wikiconv2.py index 7772030aca..837ffebf2e 100755 --- a/helpcontent2/to-wiki/wikiconv2.py +++ b/helpcontent2/to-wiki/wikiconv2.py @@ -534,7 +534,7 @@ class Table(ElementBase): def get_all(self): # + ' align="left"' etc.? - text = '{| border="1"\n' + \ + text = '{| class="wikitable"\n' + \ ElementBase.get_all(self) + \ '|}\n\n' return text |