Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
check for longname for each syntax plugin
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
camelcase.pm
diff --git
a/IkiWiki/Plugin/camelcase.pm
b/IkiWiki/Plugin/camelcase.pm
index f9ee30fe288456666d8008045a589c5db24f3366..088447d6b4d133d0197e6bc3c1df57fd9c3292e8 100644
(file)
--- a/
IkiWiki/Plugin/camelcase.pm
+++ b/
IkiWiki/Plugin/camelcase.pm
@@
-4,7
+4,7
@@
package IkiWiki::Plugin::camelcase;
use warnings;
use strict;
use warnings;
use strict;
-use IkiWiki
2
.00;
+use IkiWiki
3
.00;
# This regexp is based on the one in Text::WikiFormat.
my $link_regexp=qr{
# This regexp is based on the one in Text::WikiFormat.
my $link_regexp=qr{
@@
-61,7
+61,7
@@
sub scan (@) {
my $content=$params{content};
while ($content =~ /$link_regexp/g) {
my $content=$params{content};
while ($content =~ /$link_regexp/g) {
-
push @{$links{$page}}, linkpage($1
) unless ignored($1)
+
add_link($page, linkpage($1)
) unless ignored($1)
}
}
}
}