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-08 15:23:34 +01:00
committed by pennae
parent 3a3274231e
commit f33e360f67
@@ -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)