man2rst.py: Erase \&
This commit is contained in:
parent
cfbf907418
commit
7ca2787cc8
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue