Unbreak groff single quotes and backticks character replacements

This commit is contained in:
Yorhel 2024-07-30 13:10:58 +02:00
parent 0c1b140638
commit ffad28696e

View file

@ -34,6 +34,9 @@ sub fmt {
".hy 0\n.de hy\n..\n" ".hy 0\n.de hy\n..\n"
# Emulate man-db's --nj option # Emulate man-db's --nj option
.".na\n.de ad\n..\n" .".na\n.de ad\n..\n"
# Unbreak some quotes, there's plenty of man pages that ("incorrectly") use these for code samples.
.".char ` \\`\n"
.".char ' \\[aq]\n"
.encode_utf8($input); .encode_utf8($input);
my $groff = run_cmd \@cmd, my $groff = run_cmd \@cmd,