aboutsummaryrefslogtreecommitdiff
path: root/wiki2texi.py
diff options
context:
space:
mode:
Diffstat (limited to 'wiki2texi.py')
-rw-r--r--wiki2texi.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/wiki2texi.py b/wiki2texi.py
index e9009ec..3d74f80 100644
--- a/wiki2texi.py
+++ b/wiki2texi.py
@@ -120,9 +120,7 @@ class TexiWikiMarkup (WikiMarkup):
return str(elt)
def str_tag(self, elt):
- if elt['tag'] == 'nowiki':
- return '@example\n' + self.format(elt['content']) + '@end example\n'
- elif elt['tag'] == 'code':
+ if elt['tag'] == 'code':
self.nested += 1
s = self.format(elt['content'])
self.nested -= 1

Return to:

Send suggestions and report system problems to the System administrator.