diff options
-rw-r--r-- | IkiWiki.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index eb003a1fb..81a634e2b 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -407,6 +407,7 @@ sub bestlink ($$) { #{{{ # absolute links $cwd=""; } + $link=~s/\/$//; do { my $l=$cwd; @@ -541,6 +542,7 @@ sub htmllink ($$$;@) { #{{{ my $page=shift; # the page that will contain the link (different for inline) my $link=shift; my %opts=@_; + $link=~s/\/$//; my $bestlink; |