Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct the url in pod-links
  • Loading branch information
Paul Cochrane committed Apr 10, 2015
1 parent 2feb1c8 commit eaed7b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Pod/Htmlify.pm6
Expand Up @@ -64,7 +64,8 @@ class Website is export {
}
my $example-title = pod-title-contents($pod, $file-basename);
my $author = pod-author-contents($pod, $file-basename);
my $link = pod-link($file-basename, "$category-key/$file-basename");
my $html-file = $file-basename.subst(/\.p[l||6]$/, ".html");
my $link = pod-link($file-basename, "$category-key/$html-file");
my $example = Example.new(
title => $example-title,
author => $author,
Expand Down

0 comments on commit eaed7b7

Please sign in to comment.