Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed generated links to Github files
  • Loading branch information
mkrull committed Feb 28, 2015
1 parent ae5d229 commit 06ada66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htmlify.p6
Expand Up @@ -762,7 +762,7 @@ def p6format(code):
#| render Pod6 properly.
sub doc-source-reference($doc) {
# XXX: it would be nice to have a filename attribute for pod documents
my $pod-filename = $doc.url.split(/\//)[*-1] ~ '.pod';
my $pod-filename = $doc.url.split(/\//)[*-1].subst('::', '/') ~ '.pod';
my $kind = $doc.kind.tclc;
my @doc-source-ref-pod =
pod-block("This documentation was generated from ",
Expand Down

0 comments on commit 06ada66

Please sign in to comment.