summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2015-04-05 19:02:17 +0200
committerAndras Timar <andras.timar@collabora.com>2015-04-05 19:02:17 +0200
commitc95a5afdf40bb9b86b702dd1ca6e6d5bcc51d2e6 (patch)
tree7aae4adb222a61fd56ee0c6591da81a56fdfeee1
parentaed6b13162926773484af680b4d61acd0515508f (diff)
wikihelp: handle <bascode> in conditional text
Change-Id: I79f90a78d26be8e81531de42d6bcd8c0c671f231
-rwxr-xr-xto-wiki/wikiconv2.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/to-wiki/wikiconv2.py b/to-wiki/wikiconv2.py
index 7964c28297..48143f1367 100755
--- a/to-wiki/wikiconv2.py
+++ b/to-wiki/wikiconv2.py
@@ -952,6 +952,8 @@ class Case(ElementBase):
self.parse_child(Section(attrs, self))
elif name == 'table':
self.parse_child(Table(attrs, self))
+ elif name == 'bascode':
+ self.parse_child(BasicCode(attrs, self))
else:
self.unhandled_element(parser, name)