Commit 7ca2787c authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

man2rst.py: Erase \&

parent cfbf9074
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment