8 if(defined($terms{$term})) {
9 die "$1 defined twice\n";
25 sub format_tab_80
($) {
30 while($text=~/^(.{1,72})(|\s+(\S.*)?)$/) {
46 This list is sorted alphabetically:
50 @keys=sort {uc($a) cmp uc($b)} keys %terms;
51 $pattern='(\b(?<!link:git-)'.join('\b|\b(?<!link:git-)',reverse @keys).'\b)';
52 foreach $key (@keys) {
53 $terms{$key}=~s/$pattern/sprintf "<<ref_".no_spaces($1).",$1>>";/eg;
54 print '[[ref_'.no_spaces
($key).']]'.$key."::\n"
55 .format_tab_80
($terms{$key})."\n";
62 Written by Johannes Schindelin <Johannes.Schindelin@gmx.de> and
63 the git-list <git@vger.kernel.org>.
67 Part of the link:git.html[git] suite