source: support whitespace before module reference
[sheet.git] / source.plp
index bc8423b1c111e5003961a80d848fc0175e875d2d..1f3c60037ff34686b27268463037039a0476e5ad 100644 (file)
@@ -64,8 +64,8 @@ foreach (@$parsed) {
        if ($_->[0] eq 'Constant' and $_->[1] =~ s/^(')([a-z0-9_.]+\.plp?)(?=\1$)//) {
                printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
        }
        if ($_->[0] eq 'Constant' and $_->[1] =~ s/^(')([a-z0-9_.]+\.plp?)(?=\1$)//) {
                printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
        }
-       if (!$_->[0] and $_->[1] =~ s/^([A-Z]\w+(?:::\w+)+)(?![^;\s])//) {
-               printf '<a href="%s">%s</a>', "/source/$1", $1;
+       if (!$_->[0] and $_->[1] =~ s/^(\s*)([A-Z]\w+(?:::\w+)+)(?![^;\s])//) {
+               printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
        }
        print Text::VimColor::_xml_escape($_->[1]);
        print "</$tag>" if $tag;
        }
        print Text::VimColor::_xml_escape($_->[1]);
        print "</$tag>" if $tag;