diff options
Diffstat (limited to 'helpcontent2')
-rwxr-xr-x | helpcontent2/to-wiki/wikiconv2.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/helpcontent2/to-wiki/wikiconv2.py b/helpcontent2/to-wiki/wikiconv2.py index cfe5fcda2f..74b3f31362 100755 --- a/helpcontent2/to-wiki/wikiconv2.py +++ b/helpcontent2/to-wiki/wikiconv2.py @@ -975,9 +975,11 @@ class Paragraph(ElementBase): def start_element(self, parser, name, attrs): if name == 'ahelp': - # TODO extended tips are ignored for now, just the text is used - # verbatim - pass + try: + if attrs['visibility'] == 'hidden': + self.parse_child(Ignore(attrs, self, name)) + except: + pass elif name == 'br': self.parse_child(Br(attrs, self)) elif name == 'comment': |