From: Jorge Pereira Date: Mon, 11 Feb 2019 19:40:35 +0000 (-0200) Subject: conf2adoc: Fix - Match anything between backtick X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a76830cc3d9ffeafde783df08882ae811f331e32;p=thirdparty%2Ffreeradius-server.git conf2adoc: Fix - Match anything between backtick --- diff --git a/scripts/asciidoc/conf2adoc b/scripts/asciidoc/conf2adoc index e843206c340..96c5cc3f2e6 100755 --- a/scripts/asciidoc/conf2adoc +++ b/scripts/asciidoc/conf2adoc @@ -123,7 +123,7 @@ sub process_file { foreach $word (@words) { next if ($word eq '\`\`\`'); - next if ($word !~ /^`(.+?)`[,.]?$/); + next if ($word !~ /.*`(.+?)`.*/); $key = $1;