Skip to content

Instantly share code, notes, and snippets.

@azatoth
Created May 3, 2011 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azatoth/ec7220609b5449cc4023 to your computer and use it in GitHub Desktop.
Save azatoth/ec7220609b5449cc4023 to your computer and use it in GitHub Desktop.
Script to convert inline defined references in wikitext to list defined references, are pretty brute force and might not work on all pages :)
#!/usr/bin/perl
use v5.10;
use File::Slurp;
use List::Util qw(max);
use strict;
my $data = read_file($ARGV[0]);
my $c=0;
my %l;
if( my @names = ($data =~ m/ref-(\d+)/g) ) {
$c = max(@names);
}
my ($body,$tail)=split/(?:==References==)/i, $data;
sub unnamed_ref {
my $ref=shift;
my $n="ref-".(++$c);
$l{$n}="<ref name=\"$n\">$ref</ref>";
"<ref name=\"$n\"/>";
}
sub named_ref{
my $ref=shift;
my $n=shift;$l{$n}="<ref name=\"$n\">$ref</ref>";
"<ref name=\"$n\"/>";
}
sub reflist{
my $p=shift;
"{{$p\|refs=\n".join("\n",values%l);
}
sub references{
"<references>\n".join("\n",values%l)."</references>";
}
$body=~s{<ref name="(\S*?)">(.*?)</ref>}{named_ref($2, $1)}sge;
$body=~s{<ref>(.*?)</ref>}{unnamed_ref($1)}sge;
$tail=~s<{{(Reflist.*?)\|refs=><reflist($1)>sge;
$tail=~s<{{(Reflist\|\d+em)}}><reflist($1)."}}">sge;
$tail=~s{(<references\s*/>)}{references()}sge;
print $body.$tail;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment