convert_td: strip text (#91)
This commit is contained in:
committed by
GitHub
parent
f33ccd7c1a
commit
0477a0c8a0
@@ -370,7 +370,7 @@ class MarkdownConverter(object):
|
||||
return '\n\n' + text + '\n'
|
||||
|
||||
def convert_td(self, el, text, convert_as_inline):
|
||||
return ' ' + text + ' |'
|
||||
return ' ' + text.strip() + ' |'
|
||||
|
||||
def convert_th(self, el, text, convert_as_inline):
|
||||
return ' ' + text + ' |'
|
||||
|
||||
Reference in New Issue
Block a user