Manparser: Also replace \(cq escapes in the non-Deroff manparser

I'm not entirely sure why we have multiple parsers here, but I'm
guessing there's a reason.

Fixes #7086.
This commit is contained in:
Fabian Homborg 2020-06-06 16:22:56 +02:00
parent ab2db135ba
commit 0846fc8181

View File

@ -260,6 +260,7 @@ def remove_groff_formatting(data):
data = data.replace("\-", "-")
data = data.replace(".I", "")
data = data.replace("\f", "")
data = data.replace("\(cq", "'")
return data