misc improvements
parent
5b43f0b95c
commit
fa101abf08
10
t/linkify.t
10
t/linkify.t
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue