From 50f65b4ef336b1589688aaa6e01a40f1711353d7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 19 Feb 2024 10:56:38 +0100 Subject: [PATCH] cd2nroff: remove backticks from titles --- scripts/cd2nroff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cd2nroff b/scripts/cd2nroff index decaeca0a8..02460cc9da 100755 --- a/scripts/cd2nroff +++ b/scripts/cd2nroff @@ -266,7 +266,7 @@ sub single { if(/^## (.*)/) { my $word = $1; # if there are enclosing quotes, remove them first - $word =~ s/[\"\'](.*)[\"\']\z/$1/; + $word =~ s/[\"\'\`](.*)[\"\'\`]\z/$1/; # enclose in double quotes if there is a space present if($word =~ / /) { -- 2.47.3