nixos-render-docs: remove the ... escape in manpages

this is a holdover from docbook stylesheets. not really sure why they
did that.
This commit is contained in:
pennae
2023-02-01 06:24:38 +01:00
committed by Florian Brandes
parent 7878f0d483
commit e541e0c683

View File

@@ -37,7 +37,6 @@ _roff_escapes = {
ord('^'): "\\(ha",
ord('`'): "\\(ga",
ord('~'): "\\(ti",
ord(''): "...", # TODO docbook compat, remove later
}
def man_escape(s: str) -> str:
s = s.translate(_roff_escapes)