man2rst.py: Erase \&

This commit is contained in:
Tatsuhiro Tsujikawa 2014-10-18 18:29:59 +09:00
parent cfbf907418
commit 7ca2787cc8
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ def process_text(text):
text = re.sub(r'\\fB(.*?)\\fR', '\\1', text)
text = re.sub(r'\\-', '-', text)
text = re.sub(r'\*', '\\*', text)
text = re.sub(r'\\&', '', text)
return text