From: Michal Vaner Date: Thu, 18 Sep 2008 08:57:50 +0000 (+0200) Subject: Doc. system: stop pointer marks from boldifying X-Git-Tag: holmes-import~285 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=9f5cb2fc129fa75bd519009a9505cfa14de52106;p=libucw.git Doc. system: stop pointer marks from boldifying Sometimes two pointer asterisks in the definition made some part of it bold, removing the asterisks. Escape them all. --- diff --git a/build/doc-defs b/build/doc-defs index c3b683ae..b18a8b3d 100755 --- a/build/doc-defs +++ b/build/doc-defs @@ -57,7 +57,7 @@ foreach( sort { ( $groups{$a->[2]} <=> $groups{$b->[2]} ) or ( $a->[3] cmp $b->[ $file = $dircp."/".$file; $file =~ s/^\///; $file =~ s/\.[^.]+$//; - $text =~ s/(\.\.\.)/\\$1/g; + $text =~ s/(\.\.\.|\*)/\\$1/g; print OUT "<<$file:$anchor,`$name`>>:: `$text`\n"; }