X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/505b0c19b7143621bcd1f72fb5f07801557d5a2a..84f0630eace132ded7af839105d7e2d096eba5ad:/source.plp diff --git a/source.plp b/source.plp index 469f49e..418a2c1 100644 --- a/source.plp +++ b/source.plp @@ -91,9 +91,16 @@ else { print "<$tag$arg class=\"sy-\l$type\">" if $tag; if (!$type || $type eq 'Constant' and $contents =~ s{^(['"]?)(/?[a-z0-9_.]+\.(?:plp?|css|js))(?=\1$)}{}) { + # link other page sources, stylesheets, and javascript printf '%s%s', $1, "/source/$2", $2; } if (!$type and $contents =~ s/^(\s*)([A-Z]\w+(?:::\w+)+)(?![^;\s])//) { + # link perl module names (Xx::Xx...) + printf '%s%s', $1, "/source/$2", $2; + } + if ($type && $type eq 'Comment' + and $contents =~ s{^(.*? by )(tools/\S+)}{}) { + # link generator scripts (by tools/...) printf '%s%s', $1, "/source/$2", $2; } print Text::VimColor::_xml_escape($contents);