diff options
-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 8603739c1e..762484d225 100755 --- a/helpcontent2/to-wiki/wikiconv2.py +++ b/helpcontent2/to-wiki/wikiconv2.py @@ -1050,7 +1050,7 @@ class Paragraph(ElementBase): # the text itself children = ElementBase.get_all(self) - if self.role != 'emph': + if self.role != 'emph' and self.role != 'bascode': children = children.strip() if len(children) == 0: |