OK done. If I missed one, post it here.
About new pages, it is probably easier to make the old layout, because it is also of the form:
all kanji lyrics
all romaji
all translation
Just like most pages without table now. So don't hesitate to make an old table and post about it here so I can run the script on it.
And I said earlier Harikiri Rally had kanji lyrics, but I must have forgotten to save the page last week... Will look it up again.
BTW here is the script, in case you want to transform tables yourself:
#! /bin/bash
xsel -o -b | awk 'BEGIN { collect=0; run=0
print "{|border=0 style=\x22text-align:left;\x22 class=\x22wikitable\x22"
print "!Japanese/Kanji Lyrics"
print "!Romanized Lyrics"
print "!Translated Lyrics"
print ""
}
{ if ($1 ~ /^!/) { if (run==1) {max=i}; run+=1; i=0;}
if ($1 ~ /^\|-style=/) {
if (run == 1) {
collect=1; i++; stylearr[i]=$0;
}
if (run > 1) {
i++
}
}
if (collect == 1 && $0 ~ /^[^{|!]/) {
if (tar[i","run] ~ /..../) {tar[i","run]=tar[i","run] "\n" $0} else {tar[i","run]=$0}
}
}
END {
for (count=1;count<max+1;count++) { print stylearr[count]; print "||"; print tar[count",1"]; print "||"; print tar[count",2"]; print "||"; print tar[count",3"]; }
print "|}"
}' | xsel -i -b