6 # We only need to use "\&'" or "\&." at the start of a line.
7 s/(?<=.)\\\&(['.])/$1/g;
9 # Some quotes turn into open/close quotes.
10 s/'(.)'/\\(oq$1\\(cq/g;
11 s/(^|[ (])"(?!( |$))/$1\\(lq/gm;
12 s/(?<! )"([.,:;! )]|$)/\\(rq$1/gm;
13 s/(\\\(lq[^(]*) "( |$)/$1 \\(rq$2/gm;
14 s/(^| )" ([^(]*\\\(rq)/$1\\(lq $2/gm;
17 s/^([. ])(.*)/ $1 . realquotes($2) /egm;
18 s/(\\f(B|\(CW).*?\\fP)/ realquotes($1) /egs;
20 s/^\\\&(\\\(oq)/$1/gm;
25 $txt =~ s/\\\([lr]q/"/g;
26 $txt =~ s/\\\([oc]q/'/g;