diff --git a/man2rst.py b/man2rst.py index fd91667e..90e5f850 100755 --- a/man2rst.py +++ b/man2rst.py @@ -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