static S wikipediaDeformat(S s) { ret regexpReplace(s, "\\[\\[(.*?)\\]\\]", func(Matcher m) -> S { S s = m.group(1); printStruct(+s); ret substring(s, indexOf(s, "¦")+1); }); }