misc improvements

master
Joey Hess 2008-02-24 15:58:11 -05:00
parent 5b43f0b95c
commit fa101abf08
1 changed files with 7 additions and 7 deletions

View File

@ -22,11 +22,11 @@ sub linkify ($$$$) {
# This could change, if so, update it.. # This could change, if so, update it..
%IkiWiki::pagecase=(); %IkiWiki::pagecase=();
%links=(); %links=();
foreach my $page (@existing_pages) { foreach my $p (@existing_pages) {
$IkiWiki::pagecase{lc $page}=$page; $IkiWiki::pagecase{lc $p}=$p;
$links{$page}=[]; $links{$p}=[];
$renderedfiles{"$page.mdwn"}=[$page]; $renderedfiles{"$p.mdwn"}=[$p];
$destsources{$page}="$page.mdwn"; $destsources{$p}="$p.mdwn";
} }
%config=IkiWiki::defaultconfig(); %config=IkiWiki::defaultconfig();